import { IRole } from 'aws-cdk-lib/aws-iam';
import { Function } from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
export interface CheckParamterFunctionProps {
    /**
     * The name of the parameter.
     */
    readonly parameterName: string;
    /**
     * Role for crossAccount permission
     */
    readonly crossAccountRole?: IRole;
}
export declare class CheckParameterFunction extends Function {
    constructor(scope: Construct, id: string, props: CheckParamterFunctionProps);
}
