export interface SqitchRow {
    deploy: string;
    revert?: string;
    verify?: string;
    content: string;
    deps?: string[];
    name?: string;
}
interface WriteOptions {
    outdir: string;
    name: string;
    replacer: (str: string) => string;
}
export declare const writeSqitchFiles: (rows: SqitchRow[], opts: WriteOptions) => void;
export declare const writeSqitchPlan: (rows: SqitchRow[], opts: WriteOptions) => void;
export {};
