import { IFileWriter } from "./IFileWriter"; export declare class PasswordWriter implements IFileWriter { private file; private aes; constructor(file: IFileWriter, password?: string); write(data: any): Promise; }