import { CfnResource, Resolvable } from '../../base';
export declare type WebACLAssociation_Type = 'AWS::WAFRegional::WebACLAssociation';
export declare const WebACLAssociation_Type = "AWS::WAFRegional::WebACLAssociation";
/**
 * Resource Type definition for AWS::WAFRegional::WebACLAssociation
 * {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html}
 */
export default function WebACLAssociation(props: WebACLAssociation_Properties): CfnResource<WebACLAssociation_Properties>;
/**
 * Resource Type definition for AWS::WAFRegional::WebACLAssociation
 * {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html}
 */
export declare type WebACLAssociation_Properties = {
    Id?: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn}
     */
    ResourceArn: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid}
     */
    WebACLId: Resolvable<string>;
};
