import { CustomResource, ResourceProps } from 'aws-cdk-lib';
import { Construct } from 'constructs';
export interface PSTNResourceProps extends ResourceProps {
    readonly properties: {
        [propname: string]: any;
    };
    readonly resourceType: 'PhoneNumber' | 'VoiceConnector' | 'SMA' | 'SMALogging' | 'SMAAlexaSkill' | 'SMARule' | 'PhoneAssociation' | 'VoiceProfileDomain' | 'PhoneAssociation';
    readonly uid: string;
}
export declare class PSTNResources extends Construct {
    readonly pstnCustomResource: CustomResource;
    constructor(scope: Construct, id: string, props: PSTNResourceProps);
}
