import * as $dara from '@darabonba/typescript'; export declare class CreateCostUnitRequestUnitEntityList extends $dara.Model { /** * @remarks * The user ID of the owner of the cost center. * * This parameter is required. * * @example * 982375623 */ ownerUid?: number; /** * @remarks * The ID of the parent cost center. A value of -1 indicates the root cost center. * * This parameter is required. * * @example * -1 */ parentUnitId?: number; /** * @remarks * The name of the cost center. * * This parameter is required. * * @example * test */ unitName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateCostUnitRequest extends $dara.Model { /** * @remarks * The list of cost centers. */ unitEntityList?: CreateCostUnitRequestUnitEntityList[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }