/** Autobackup params */
export interface AutoBackup {
    /** Unix Cron pattern (eg: '0 0 * * *') */
    cron: string;
    /** Name of the distant image */
    distantImageName?: string;
    /** Name of the distant region */
    distantRegionName?: string;
    /** Name of the image */
    imageName: string;
    /** Name of your workflow */
    name: string;
    /** Number of backup to keep */
    rotation: number;
}
//# sourceMappingURL=AutoBackup.d.ts.map