/** @typedef {typeof __propDef.props} ListProps */ /** @typedef {typeof __propDef.events} ListEvents */ /** @typedef {typeof __propDef.slots} ListSlots */ export default class List extends SvelteComponentTyped<{ link?: boolean; class?: string; inverted?: boolean; style?: {}; aligned?: string; floated?: string; bulleted?: boolean; ordered?: boolean; horizontal?: boolean; selection?: boolean; animated?: boolean; relaxed?: boolean; divided?: boolean; celled?: boolean; }, { mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type ListProps = typeof __propDef.props; export type ListEvents = typeof __propDef.events; export type ListSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { link?: boolean; class?: string; inverted?: boolean; style?: {}; aligned?: string; floated?: string; bulleted?: boolean; ordered?: boolean; horizontal?: boolean; selection?: boolean; animated?: boolean; relaxed?: boolean; divided?: boolean; celled?: boolean; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};