/** @packageDocumentation * @module Common */ /** Interface for ShowHide items * @public */ export interface ShowHideItem { id: T; label: string; } /** Union type for all possible ShowHide IDs * @public */ export declare type ShowHideID = string | number | symbol; //# sourceMappingURL=ShowHideItem.d.ts.map