import { Construct } from '@aws-cdk/core';
import { Runtime } from '@aws-cdk/aws-lambda';
export interface ICognitoEnableProvidersProps {
    userPoolId: string;
    userPoolClientId: string;
    providers: string[];
    callbackUrls?: string[];
    logoutUrls?: string[];
    runtime?: Runtime;
}
export declare class CognitoEnableProvidersConstruct extends Construct {
    constructor(scope: Construct, id: string, props: ICognitoEnableProvidersProps);
}
