import * as $dara from '@darabonba/typescript'; export declare class DeleteCostUnitRequest extends $dara.Model { /** * @remarks * The user ID of the cost center owner. * * This parameter is required. * * @example * 2135342 */ ownerUid?: number; /** * @remarks * The ID of the cost center. A value of -1 indicates the root cost center. * * This parameter is required. * * @example * 376348 */ unitId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }