import { UtilityService } from '../model'; import { CuiNullable } from '@cuby-ui/cdk'; import { ListObjectInstruction, Resource, StorageObjectInstruction, Utility, UtilityComponent, UtilityComponentType, UtilityComponentWithInstructions, UtilityComponentWithResources, UtilitySubject } from '@cuby-ui/api'; import type { ResourceUtilityMaterial } from '../ui/resources-block/components'; import * as i0 from "@angular/core"; export declare class UtilityBaseService implements UtilityService { private readonly utilitySignal; private readonly instructionComponentSignal; private readonly resourcesComponentSignal; readonly instructions: import("@angular/core").Signal; readonly resources: import("@angular/core").Signal; readonly instructionComponent: import("@angular/core").Signal>; readonly resourcesComponent: import("@angular/core").Signal>; readonly utility: import("@angular/core").Signal>; setUtility(utility: Utility): void; setComponent(component: UtilityComponent): void; removeComponent(componentType: UtilityComponentType): void; addInstructions(instructions: ListObjectInstruction[]): void; updateInstruction(instruction: StorageObjectInstruction, id?: string): void; removeInstruction(instructionStorageId: string): void; updateInstructionTitle(instructionId: string, title: string): void; addResourceStructure(resource: Resource): void; removeResourceStructure(resourceId: string): void; addResources(resources: UtilitySubject[], containerId: string): void; updateResource(resource: UtilitySubject | ResourceUtilityMaterial, containerId: string): void; removeResource(resourceId: string, containerId: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }