import { SvelteComponentTyped } from "svelte"; type ObjectKey = string | number | symbol; declare const __propDef: { props: { groupBy?: >(items: TItem[], key: K) => Record; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type SlashProps = typeof __propDef.props; export type SlashEvents = typeof __propDef.events; export type SlashSlots = typeof __propDef.slots; export default class Slash extends SvelteComponentTyped { get groupBy(): >(items: TItem[], key: K) => Record; } export {};