import ElasticBeanstalk, { ApplicationDescription } from 'aws-sdk/clients/elasticbeanstalk';
import { Credentials, TagMap } from '../../types';
export interface RawAwsElasticBeanstalkApp extends ApplicationDescription {
    Tags?: TagMap;
}
export declare const getResourceTags: (eb: ElasticBeanstalk, resourceArn: string) => Promise<TagMap>;
declare const _default: ({ regions, credentials, }: {
    regions: string;
    credentials: Credentials;
}) => Promise<{
    [property: string]: RawAwsElasticBeanstalkApp[];
}>;
export default _default;
