import type { WriteCode } from './config-writer-json.js'; export interface WriteTomlConfigArgs { path: string; tablePath: string[]; entry: Record; dryRun?: boolean; } export interface WriteTomlConfigResult { ok: boolean; code: WriteCode; message?: string; dryRun?: boolean; backupPath?: string; } export declare function writeTomlConfig(args: WriteTomlConfigArgs): Promise; //# sourceMappingURL=config-writer-toml.d.ts.map