export declare function createTranslator(from: string, to: string, send: (prompt: string) => Promise<string>): (text: string) => Promise<string>;
