import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; header: string; description: string; }; events: { [evt: string]: CustomEvent; }; slots: { header: {}; description: {}; }; }; export declare type ListDataItemProps = typeof __propDef.props; export declare type ListDataItemEvents = typeof __propDef.events; export declare type ListDataItemSlots = typeof __propDef.slots; export default class ListDataItem extends SvelteComponentTyped { } export {};