import type { OnlineGamesEnv } from "../client"; export type VerifySuccessData = { token: string; locale?: string; defaultLotteryType?: string; raw: unknown; }; export type VerifyPageLabels = { loading?: string; missingAccessKey?: string; }; export type VerifyPageProps = { env: OnlineGamesEnv; /** * @deprecated VerifyPage reads accessKey from the URL search param by default. * This remains as an override for older integrations. */ accessKey?: string | null; endpoint?: string; minDelayMs?: number; redirectDelayMs?: number; labels?: VerifyPageLabels; className?: string; onSuccess: (data: VerifySuccessData) => void | Promise; onError?: (error: Error) => void; }; //# sourceMappingURL=types.d.ts.map