import { CfnResource, Resolvable } from '../../base';
export declare type Hub_Type = 'AWS::SecurityHub::Hub';
export declare const Hub_Type = "AWS::SecurityHub::Hub";
/**
 * Resource Type definition for AWS::SecurityHub::Hub {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html}
 */
export default function Hub(props: Hub_Properties): CfnResource<Hub_Properties>;
/**
 * Resource Type definition for AWS::SecurityHub::Hub {@link
 * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html}
 */
export declare type Hub_Properties = {
    Id?: Resolvable<string>;
    /**
     * {@link
     * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hub.html#cfn-securityhub-hub-tags}
     */
    Tags?: {
        [k: string]: unknown;
    };
};
