import type { SvelteComponentTyped } from "svelte"; export type ContextMenuGroupProps = { /** * @default [] */ selectedIds?: ReadonlyArray; /** * Specify the label text * @default "" */ labelText?: string; }; export default class ContextMenuGroup extends SvelteComponentTyped< ContextMenuGroupProps, Record, { default: {} } > {}