import { LitElement } from 'lit'; import { ListKind, ListSize, ListDensity } from '@viasat/beam-shared/components/list'; import { ListContext } from './List.context'; /** * @slot default - Add list items to create a List */ export declare class BmList extends LitElement { #private; static styles: import('lit').CSSResult; private listeners; listContext: ListContext; parentListContext: ListContext | undefined; /** * Specify the kind of List * @default 'ordered' */ kind?: ListKind; /** * Specify the size of List * @default 'md' */ size?: ListSize; /** * Specify the density of the List * @default 'md' */ density?: ListDensity; /** * Specify if the List has an indentation. * Valid only for `unstyled` and `withIcons` List kinds. * @default true */ indent?: boolean; updated(): void; nested: boolean; render(): import('lit-html').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'bm-list': BmList; } } //# sourceMappingURL=List.d.ts.map