import React from 'react'; import type { GetIdSdk } from '..'; import type { TrySendEvent } from '../api/postEvent'; export interface Theme { cameraOverlayBackgroundColor: string; cameraFrameColor: string; successColor: string; errorColor: string; } export interface IGetIDContext { theme: Theme; trySendEvent: TrySendEvent; } export type GetIDProviderProps = { children: React.ReactNode; sdk: GetIdSdk; debugMode?: boolean; }; export declare const GetIDContext: React.Context; export declare const GetIDProvider: ({ children, sdk, debugMode, }: GetIDProviderProps) => React.JSX.Element; //# sourceMappingURL=getid-context.d.ts.map