export declare const writeStaticFile: ({ contents, filePath, }: {
    contents: string | ArrayBuffer;
    filePath: string;
}) => Promise<void>;
