export declare const storeCredentials: (credentials: {
    token?: string;
    refreshToken?: string;
    idToken?: string;
}) => void;
export declare const getStoredCredentials: () => {
    token: string;
    refreshToken: string;
    idToken: string;
} | void;
export declare const removeStoredCredentials: () => void;
