import * as lambda from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
/**
 * Props for UserPoolClientSecretFunction
 */
export interface UserPoolClientSecretFunctionProps extends lambda.FunctionOptions {
}
/**
 * An AWS Lambda function which executes src/user-pool-client-secret.
 */
export declare class UserPoolClientSecretFunction extends lambda.Function {
    constructor(scope: Construct, id: string, props?: UserPoolClientSecretFunctionProps);
}
