import { ElementRef } from '@angular/core'; import * as i0 from "@angular/core"; /** * @deprecated Use the {@link ListComponent} instead */ export declare class ListDeprecatedComponent { readonly element: ElementRef; /** * List id attribute */ listId?: string; /** * Whether group items are clickable */ isClickable?: boolean; /** * Whether it is a checkbox list or not */ isCheckboxList?: boolean; /** * Whether group items have borders */ hasBorder: boolean; /** * Whether list is dense or not, i.e: smaller */ isDense: boolean; /** * Add role="listbox" and tabindex="-1" to the element. * * Used by `nj-select` for accessibility reasons. */ isCustomSelectList: boolean; /** * Accessible label for the list when using "listbox" role. */ ariaLabel?: string; /** * Whether list is multi-select or not, to add necessary accessible labels */ isMultiSelect: boolean; rootEl?: ElementRef; constructor(element: ElementRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }