export declare class Interfaces { private _data; private _added; readonly hasMoreInterfaces: boolean; constructor(implementItems: string[]); add(item: string): void; get all(): string[]; get added(): string[]; get isEmpty(): boolean; }