import { Config } from 'aws-sdk/lib/config';
export interface RawAwsSecurityHub {
    HubArn: string;
    SubscribedAt: string;
    AutoEnableControls?: boolean;
    region: string;
}
declare const _default: ({ regions, config, }: {
    regions: string;
    config: Config;
}) => Promise<{
    [property: string]: RawAwsSecurityHub[];
}>;
export default _default;
