import { Duration, Stack, StackProps } from 'aws-cdk-lib';
import { Construct } from 'constructs';
export interface SelfDestructStackProps extends StackProps {
    readonly selfDestructionDuration?: Duration;
    readonly selfDestructionEnable?: boolean;
}
export declare class SelfDestructStack extends Stack {
    constructor(scope: Construct, id: string, props?: SelfDestructStackProps);
}
