import { Construct } from 'constructs';
import { Duration } from 'aws-cdk-lib';
export interface SelfDestructConstructProps {
    readonly duration: Duration;
}
export declare class SelfDestructConstruct extends Construct {
    constructor(scope: Construct, id: string, props?: SelfDestructConstructProps);
}
