export declare type CustomToken = {
    customToken: string;
};
export declare type EmailAndPassword = {
    email: string;
    password: string;
};
export declare type OAuthCredentials = {
    idToken: string;
    providerId: string;
};
export declare type Credentials = EmailAndPassword | OAuthCredentials | CustomToken;
