import { ConfigType } from './types';
declare type SaveConfig = Pick<ConfigType, 'mode' | 'output'>;
export declare const save: (conf: SaveConfig, content: string) => Promise<void>;
export {};
