import { 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 Pick, Exclude, '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 = Pick, Exclude, 'themeLight' | 'themeDark'>>; //# sourceMappingURL=types.d.ts.map