import { SvelteComponent } from "svelte"; import type { GroupProps } from '../types.js'; declare const __propDef: { props: GroupProps; events: { [evt: string]: CustomEvent; }; slots: { default: { container: { action: (node: HTMLElement) => void; attrs: { 'data-cmdk-group': string; role: string; hidden: boolean | undefined; 'data-value': string; }; }; group: { attrs: { 'data-cmdk-group-items': string; role: string; 'aria-labelledby': string | undefined; }; }; heading: { attrs: { 'data-cmdk-group-heading': string; 'aria-hidden': boolean; id: string; }; }; }; }; }; export type CommandGroupProps = typeof __propDef.props; export type CommandGroupEvents = typeof __propDef.events; export type CommandGroupSlots = typeof __propDef.slots; export default class CommandGroup extends SvelteComponent { } export {};