///
import type { SvelteComponentTyped } from "svelte";
export interface StructuredListProps
extends svelte.JSX.HTMLAttributes {
/**
* Specify the selected structured list row value
* @default undefined
*/
selected?: string;
/**
* Set to `true` to use the condensed variant
* @default false
*/
condensed?: boolean;
/**
* Set to `true` to flush the list
* @default false
*/
flush?: boolean;
/**
* Set to `true` to use the selection variant
* @default false
*/
selection?: boolean;
}
export default class StructuredList extends SvelteComponentTyped<
StructuredListProps,
{
click: WindowEventMap["click"];
mouseover: WindowEventMap["mouseover"];
mouseenter: WindowEventMap["mouseenter"];
mouseleave: WindowEventMap["mouseleave"];
change: CustomEvent;
},
{ default: {} }
> {}