import { IFunction } from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
export interface InvocationAlarmProps {
    /**
       * Lambda Invocation threshold.
       */
    readonly threshold: number;
    /**
       * The function to monitor.
       */
    readonly eventFunction: IFunction;
}
/**
 * Cloudwatch Alarm used across this construct library.
 */
export declare class InvocationAlarm extends Construct {
    constructor(scope: Construct, id: string, props: InvocationAlarmProps);
}
