import { CfnResource, Resolvable } from '../../base';
export declare type DNSSEC_Type = 'AWS::Route53::DNSSEC';
export declare const DNSSEC_Type = "AWS::Route53::DNSSEC";
/**
 * Resource used to control (enable/disable) DNSSEC in a specific hosted
 * zone. {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-dnssec.html}
 */
export default function DNSSEC(props: DNSSEC_Properties): CfnResource<DNSSEC_Properties>;
/**
 * Resource used to control (enable/disable) DNSSEC in a specific hosted
 * zone. {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-dnssec.html}
 */
export declare type DNSSEC_Properties = {
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-dnssec.html#cfn-route53-dnssec-hostedzoneid}
     */
    HostedZoneId: Resolvable<string>;
};
