import * as $dara from '@darabonba/typescript'; export declare class CreateTriggerResponseBody extends $dara.Model { /** * @remarks * The trigger action. * * @example * redeploy */ action?: string; /** * @remarks * The cluster ID. * * @example * c93095129fc41463aa455d89444fd**** */ clusterId?: string; /** * @remarks * The trigger ID. * * @example * 75973497486****** */ id?: string; /** * @remarks * The trigger project name. * * @example * default/test-app */ projectId?: string; /** * @remarks * The trigger type. * * @example * deployment */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }