export type ClerkSetupOptions = {
    publishableKey?: string;
    frontendApiUrl?: string;
    debug?: boolean;
};
export type ClerkSetupReturn = {
    CLERK_FAPI?: string;
    CLERK_TESTING_TOKEN?: string;
};
export type SetupClerkTestingTokenOptions = {
    frontendApiUrl?: string;
};
export type ClerkSignInParams = {
    strategy: 'password';
    password: string;
    identifier: string;
} | {
    strategy: 'phone_code' | 'email_code';
    identifier: string;
};
export type SignInHelperParams = {
    signInParams: ClerkSignInParams;
    windowObject?: Window;
};
//# sourceMappingURL=types.d.ts.map