import { SvelteComponentTyped } from "svelte";
import Avatar from './Avatar.svelte';
import type { ComponentProps } from '../types';
declare const __propDef: {
    props: {
        [x: string]: any;
        title?: string | number | null;
        subheading?: string | number | null;
        icon?: string | null;
        avatar?: boolean | ComponentProps<Avatar>;
        list?: 'type' | 'parent' | 'group';
        noShadow?: boolean;
        noBackground?: boolean;
        classes?: {
            avatar?: string;
            icon?: string;
            title?: string;
            subheading?: string;
        };
        loading?: boolean | null;
    };
    events: {
        click: MouseEvent;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        avatar: {};
        title: {};
        subheading: {};
        actions: {};
    };
};
export type ListItemProps = typeof __propDef.props;
export type ListItemEvents = typeof __propDef.events;
export type ListItemSlots = typeof __propDef.slots;
export default class ListItem extends SvelteComponentTyped<ListItemProps, ListItemEvents, ListItemSlots> {
}
export {};
