export declare class FsLogger { file: string; header: string; constructor(file: string, header: string); log(data: string): Promise; } export declare class FsFlag> { file: string; constructor(file: string); flag(data: Data): Promise; unflag(): Promise; hasFlag(): Promise; readFlag(): Promise; flagSync(data: Data): void; }