import EC2, { Snapshot, CreateVolumePermission } from 'aws-sdk/clients/ec2';
import { Config } from 'aws-sdk/lib/config';
import { TagMap } from '../../types';
export interface RawAwsEBSSnapshot extends Omit<Snapshot, 'Tags'> {
    region: string;
    Permissions?: CreateVolumePermission[];
    Tags?: TagMap;
}
declare const _default: ({ regions, config, }: {
    regions: string;
    config: Config;
}) => Promise<{
    [region: string]: EC2.Snapshot & {
        region: string;
    }[];
}>;
export default _default;
