import { APIsResponse, SSOTokenParams, SSOTokenResponse, ApiKey } from './consts'; export declare const signIn: ({ email, password, }: { email: string; password: string; }) => Promise; export declare const createKey: ({ memo }?: { memo?: string | undefined; }) => Promise; export declare const keyDetails: ({ id }: { id: string; }) => Promise; export declare const listKeys: () => Promise; export declare const deleteKey: ({ id }: { id: string; }) => Promise; export declare const getGoogleRedirectURL: () => Promise; export declare const getGoogleSSOToken: (params: SSOTokenParams) => Promise; export declare const getFacebookRedirectURL: () => Promise; export declare const getFacebookSSOToken: (params: SSOTokenParams) => Promise; export declare const getMicrosoftRedirectURL: () => Promise; export declare const getMicrosoftSSOToken: (params: SSOTokenParams) => Promise;