import { Cre8Element } from '../cre8-element'; import '../field-note/field-note'; /** * Select Tile List is a container design to hold multiple Select Tile Components. * * @slot "" - The default slot norminally contains multiple `` Components. * @cssprop "--cre8-select-tile-list-item-width" - Width of each child. Not used for horizontal. */ export declare class Cre8SelectTileList extends Cre8Element { static styles: import("lit").CSSResult[]; /** * Whether to show the tiles side by side (columns) or stacked vertically (rows). */ variant: 'columns' | 'rows'; /** * Select Tile container label */ label?: string; /** * Select Tile container fieldnote */ fieldNote?: string; /** * Select Tile container fieldnote aria describe by */ ariaDescribedBy?: string; /** * Select Tile container fieldnote icon name */ fieldNoteIconName?: string; /** * Select Tile container fieldnote knockout */ fieldNoteKnockout?: boolean; /** * Select Tile container fieldnote isSuccess */ fieldNoteIsSuccess?: boolean; /** * Select Tile container fieldnote isError */ fieldNoteIsError?: boolean; connectedCallback(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-select-tile-list': Cre8SelectTileList; } } export default Cre8SelectTileList; //# sourceMappingURL=select-tile-list.d.ts.map