import { ScanMode } from '../model/types.js'; export interface IdentityGateResolved { apiKey: string; mode: ScanMode; } interface IdentityGateProps { externalUserId: string; onResolved: (result: IdentityGateResolved) => void; onCancel?: () => void; } export declare function IdentityGate({ externalUserId, onResolved, onCancel, }: IdentityGateProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=IdentityGate.d.ts.map