import type { Snippet } from "svelte"; import type { HTMLLabelAttributes } from "svelte/elements"; import type { ButtonAttrs, AnchorAttrs, DivAttrs, NotButton, NotLink } from "../misc/typing-utils"; type NotLabel = T & { label?: false; }; type ActionProps = NotLabel | NotLabel | (NotLink> & { label: true; }) | NotLabel; type $$ComponentProps = { leading?: Snippet; overline?: string; headline?: string; supporting?: string; trailing?: Snippet; lines?: number; } & ActionProps; declare const ListItem: import("svelte").Component<$$ComponentProps, {}, "">; type ListItem = ReturnType; export default ListItem;