import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class Tags { Value: Value; Key: Value; constructor(properties: Tags); } export interface ApplicationProperties { Description?: Value; Tags?: List; Name: Value; } export default class Application extends ResourceBase { static Tags: typeof Tags; constructor(properties: ApplicationProperties); }