import { Construct } from 'constructs';
export interface GuardDutyConstructProps {
    readonly enableGuardDuty?: boolean;
    readonly kubernetesAuditLogs?: boolean;
    readonly malwareProtection?: boolean;
    readonly s3Logs?: boolean;
}
export declare class GuardDutyConstruct extends Construct {
    detectorId: string;
    constructor(scope: Construct, id: string, props?: GuardDutyConstructProps);
}
