import { Error } from '../models/error'; interface FileResponse { data?: any; error?: Error; } export declare function getFile(path: string): Promise; export declare function createFile({ name, content, callback, filename, }: { name: string; content: string; callback?: any; filename: string; }): void; export {};