import * as $dara from '@darabonba/typescript'; export declare class Tag extends $dara.Model { /** * @remarks * The `key` of the label. * * @example * env */ key?: string; /** * @remarks * The `value` of the label. * * @example * prod */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }