import { CfnResource, Resolvable } from '../../base';
export declare type DocumentationVersion_Type = 'AWS::ApiGateway::DocumentationVersion';
export declare const DocumentationVersion_Type = "AWS::ApiGateway::DocumentationVersion";
/**
 * A snapshot of the documentation of an API. {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html}
 */
export default function DocumentationVersion(props: DocumentationVersion_Properties): CfnResource<DocumentationVersion_Properties>;
/**
 * A snapshot of the documentation of an API. {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html}
 */
export declare type DocumentationVersion_Properties = {
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description}
     */
    Description?: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion}
     */
    DocumentationVersion: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid}
     */
    RestApiId: Resolvable<string>;
};
