import { Stack } from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { IEventBus } from 'aws-cdk-lib/aws-events';
import { LDKEventBusProps } from '../../../types/LDKEventBus.type';
export declare class LDKEventBus extends Construct {
    readonly eventBus: IEventBus;
    constructor(scope: Stack, id: string, props: LDKEventBusProps);
}
