import type { CommonOptions } from './common'; import type { Option } from './select'; export declare function groupMultiselect(opts: GroupMultiSelectOptions): void; export declare interface GroupMultiSelectOptions extends CommonOptions { message: string options: Record[]> initialValues?: Value[] required?: boolean cursorAt?: Value selectableGroups?: boolean groupSpacing?: number } // Define the extended option type declare type ExtendedOption = Option & { group?: string | boolean }