import { TokenStore } from './types'; /** * Check and validate if the object implements the TokenStore interface * @param object Object to check that implements the TokenStore interface * @returns true if the object is a valid else false */ export declare function isValidTokenStore(object: any): object is TokenStore;