import type { FeedbackInternalOptions } from '@sentry/core'; /** * Partial configuration that overrides default configuration values * * This is the config that gets passed into the integration constructor */ export interface OptionalFeedbackConfiguration extends Omit, 'themeLight' | 'themeDark'> { themeLight?: Partial; themeDark?: Partial; } /** * Partial configuration that overrides default configuration values * * This is the config that gets passed into the integration constructor */ export type OverrideFeedbackConfiguration = Omit, 'themeLight' | 'themeDark'>; //# sourceMappingURL=types.d.ts.map