import APIGW, { Api } from 'aws-sdk/clients/apigatewayv2';
import { Config } from 'aws-sdk/lib/config';
import { TagMap } from '../../types';
export interface RawAwsApiGatewayHttpApi extends Omit<Api, 'Tags'> {
    accountId: string;
    Tags: TagMap;
    region: string;
}
export declare const getHttpApisForRegion: (apiGw: APIGW) => Promise<Api[]>;
declare const _default: ({ regions, config, }: {
    regions: string;
    config: Config;
}) => Promise<{
    [property: string]: RawAwsApiGatewayHttpApi[];
}>;
export default _default;
