import { type Integration } from '@sentry/core'; import type { FeedbackWidgetTheme } from './FeedbackWidget.theme'; import type { FeedbackButtonProps, FeedbackWidgetProps, ScreenshotButtonProps } from './FeedbackWidget.types'; export declare const MOBILE_FEEDBACK_INTEGRATION_NAME = "MobileFeedback"; type FeedbackIntegration = Integration & { options: Partial; buttonOptions: Partial; screenshotButtonOptions: Partial; colorScheme?: 'system' | 'light' | 'dark'; themeLight: Partial; themeDark: Partial; }; export declare const feedbackIntegration: (initOptions?: Partial & { buttonOptions?: FeedbackButtonProps; screenshotButtonOptions?: ScreenshotButtonProps; colorScheme?: 'system' | 'light' | 'dark'; themeLight?: Partial; themeDark?: Partial; }) => FeedbackIntegration; export declare const getFeedbackOptions: () => Partial; export declare const getFeedbackButtonOptions: () => Partial; export declare const getScreenshotButtonOptions: () => Partial; export declare const getColorScheme: () => 'system' | 'light' | 'dark'; export declare const getFeedbackLightTheme: () => Partial; export declare const getFeedbackDarkTheme: () => Partial; export {}; //# sourceMappingURL=integration.d.ts.map