import { CfnResource, Resolvable } from '../../base';
export declare type RegistryPolicy_Type = 'AWS::EventSchemas::RegistryPolicy';
export declare const RegistryPolicy_Type = "AWS::EventSchemas::RegistryPolicy";
/**
 * Resource Type definition for AWS::EventSchemas::RegistryPolicy {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html}
 */
export default function RegistryPolicy(props: RegistryPolicy_Properties): CfnResource<RegistryPolicy_Properties>;
/**
 * Resource Type definition for AWS::EventSchemas::RegistryPolicy {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html}
 */
export declare type RegistryPolicy_Properties = {
    Id?: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-policy}
     */
    Policy: {
        [k: string]: unknown;
    };
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-registryname}
     */
    RegistryName: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-registrypolicy.html#cfn-eventschemas-registrypolicy-revisionid}
     */
    RevisionId?: Resolvable<string>;
};
