import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string | undefined; element?: HTMLElement | null | undefined; style?: string | undefined; icon?: string | undefined; /** displayed as H5*/ primary?: string | undefined; /** secondary title */ secondary?: string | undefined; action?: string | undefined; density?: "default" | "medium" | "none" | "tight" | "kind" | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { listTitleIcon: {}; listItemContent: {}; listItemPrimary: {}; primary: {}; listTitleSecondary: {}; default: {}; listTitleAction: {}; }; }; export type ListTitleProps = typeof __propDef.props; export type ListTitleEvents = typeof __propDef.events; export type ListTitleSlots = typeof __propDef.slots; export default class ListTitle extends SvelteComponentTyped { } export {};