import { ICommand, ICommandChildCommands, ICommandChildHandle } from './'; export type GroupOptions = Omit, 'children'> & { children?: ICommandChildHandle['children']; }; export declare const group: (arr: ICommandChildCommands['children'], options?: GroupOptions) => ICommand;