export * from "./Query"; export declare class Mfs { readonly set: (key: string, data: any) => void; readonly get: (key: string) => any; readonly del: (key: string) => void; private readonly key; get keys(): string[]; constructor(); }