export interface Store {
    get(key: string): Promise<string> | string;
    put(key: string, value: string, expire: number): Promise<void> | void;
}
export declare class DefaultStore implements Store {
    private data;
    constructor();
    get: (key: string) => string;
    put: (key: string, value: string, expire: number) => void;
}
//# sourceMappingURL=store.d.ts.map