import { Construct } from 'constructs';
import * as google from '@cdktf/provider-google';
interface IVerifiedCertificateProps {
    zoneProject?: string;
    zoneName: string;
    name: string;
}
declare class VerifiedCertificate extends Construct {
    readonly certificate: google.certificateManagerCertificate.CertificateManagerCertificate;
    readonly domains: string[];
    constructor(scope: Construct, id: string, props: IVerifiedCertificateProps);
}
export { VerifiedCertificate, IVerifiedCertificateProps };
