/** Create an autobackup workflow after instance start up */
export interface Autobackup {
    /** Unix Cron pattern (eg: '0 0 * * *') */
    cron: string;
    /** Number of backup to keep */
    rotation: number;
}
//# sourceMappingURL=Autobackup.d.ts.map