import { CfnResource, Resolvable } from '../../base';
export declare type ClientCertificate_Type = 'AWS::ApiGateway::ClientCertificate';
export declare const ClientCertificate_Type = "AWS::ApiGateway::ClientCertificate";
/**
 * Resource Type definition for AWS::ApiGateway::ClientCertificate {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html}
 */
export default function ClientCertificate(props: ClientCertificate_Properties): CfnResource<ClientCertificate_Properties>;
/**
 * Resource Type definition for AWS::ApiGateway::ClientCertificate {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html}
 */
export declare type ClientCertificate_Properties = {
    ClientCertificateId?: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description}
     */
    Description?: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-tags}
     */
    Tags?: Tag[];
};
export declare type Tag = {
    Key: Resolvable<string>;
    Value: Resolvable<string>;
};
