import React from 'react'; import { FlintCommandGroup as FlintCommandGroupElement } from '@getufy/flint-ui/command/flint-command'; /** * A labeled group of command items. The parent `flint-command` automatically hides the whole group when all its items are filtered out. * * @slot (default) - `flint-command-item` elements. */ export interface FlintCommandGroupProps extends React.HTMLAttributes { /** Label rendered above the group items. */ heading?: string; } export declare const FlintCommandGroup: React.ForwardRefExoticComponent>;