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<Partial<FeedbackInternalOptions>, Exclude<keyof Partial<FeedbackInternalOptions>, 'themeLight' | 'themeDark'>> {
    themeLight?: Partial<FeedbackInternalOptions['themeLight']>;
    themeDark?: Partial<FeedbackInternalOptions['themeLight']>;
}
/**
 * Partial configuration that overrides default configuration values
 *
 * This is the config that gets passed into the integration constructor
 */
export type OverrideFeedbackConfiguration = Pick<Partial<FeedbackInternalOptions>, Exclude<keyof Partial<FeedbackInternalOptions>, 'themeLight' | 'themeDark'>>;
//# sourceMappingURL=types.d.ts.map
