import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        class?: string | undefined;
        value?: any[] | any;
        activeClass?: string | undefined;
        multiple?: boolean | undefined;
        mandatory?: boolean | undefined;
        max?: number | undefined;
        style?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export declare type ListItemGroupProps = typeof __propDef.props;
export declare type ListItemGroupEvents = typeof __propDef.events;
export declare type ListItemGroupSlots = typeof __propDef.slots;
export default class ListItemGroup extends SvelteComponentTyped<ListItemGroupProps, ListItemGroupEvents, ListItemGroupSlots> {
}
export {};
