import Account from './Account'; import { Instantiable, InstantiableConfig } from '../Instantiable.abstract'; export declare class OceanAuth extends Instantiable { static getInstance(config: InstantiableConfig): Promise; get(account: Account): Promise; check(token: string): Promise; store(account: Account): Promise; restore(account: Account): Promise; isStored(account: Account): Promise; private writeToken; private readToken; private getLocalStorage; private getMessage; private getExpiration; }