import { BackupPlan } from 'aws-cdk-lib/aws-backup'; import { Table } from 'aws-cdk-lib/aws-dynamodb'; import { Bucket } from 'aws-cdk-lib/aws-s3'; import { DotStack } from '../constructs/Stack'; interface BackupOptions { arns?: string[]; buckets?: Bucket[]; name: string; pointInTime?: boolean; retain?: boolean; scope: DotStack; tables?: Table[]; } export declare const addBackup: (options: BackupOptions) => { plan: BackupPlan; }; export {};