import * as cognito from "aws-cdk-lib/aws-cognito"; import { Construct } from "constructs"; export interface RetrieveClientSecretProps { client: cognito.IUserPoolClient; userPool: cognito.IUserPool; } export declare class RetrieveClientSecret extends Construct { clientSecretValue: string; constructor(scope: Construct, id: string, props: RetrieveClientSecretProps); }