declare type DynamicType = { [key: string]: any; }; declare type PassErrorToSentryProps = { exceptionMessage: string; context?: { title: string; data: DynamicType; }; }; export declare const passErrorToSentry: ({ exceptionMessage, context, }: PassErrorToSentryProps) => void; export {};