import type { FormControl } from './form-control'; import type { AttachmentsStore } from './attachments-store'; export declare class AttachmentsStoreImpl implements AttachmentsStore { private readonly _controls; /** * @internal */ get controls(): ReadonlySet>; /** * @internal */ add(control: FormControl): void; /** * @internal */ remove(control: FormControl): void; }