import { Stage, StageProps } from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { AccountInfo, OrgPrincipalAware } from '../aws-org';
export interface LogArchiveConfig {
    readonly logArchiveAccount: AccountInfo;
}
export type LogArchiveStageProps = OrgPrincipalAware & LogArchiveConfig & StageProps;
export declare class LogArchiveStage extends Stage {
    constructor(scope: Construct, props: LogArchiveStageProps);
}
