import { Config } from 'aws-sdk/lib/config';
import GLUE from 'aws-sdk/clients/glue';
export interface RawAwsGlueJob extends GLUE.Job {
    region: string;
}
declare const _default: ({ regions, config, }: {
    regions: string;
    config: Config;
}) => Promise<{
    [region: string]: RawAwsGlueJob[];
}>;
/**
 * GlueJob
 */
export default _default;
