import type { ReactNode } from 'react';
import type { BaseProps } from '../BaseProps';
export interface CommandPaletteGroupProps extends BaseProps<HTMLDivElement> {
    /** Ref forwarded to the root element. */
    ref?: React.Ref<HTMLDivElement>;
    /** Group heading text. */
    heading: string;
    /** Items within this group. */
    children: ReactNode;
}
/**
 * Visual grouping for command palette items with a heading label.
 *
 * Heading style matches DropdownMenu section headings:
 * supporting-size (12px), secondary color, no uppercase/letterSpacing.
 *
 * @compositionHint Place inside CommandPaletteList.
 *   Contains CommandPaletteItem children.
 *
 * @example
 * ```
 * <CommandPaletteGroup heading="Navigation">
 *   <CommandPaletteItem value="home" onSelect={goHome}>
 *     Home
 *   </CommandPaletteItem>
 * </CommandPaletteGroup>
 * ```
 */
export declare function CommandPaletteGroup({ heading, children, ref, xstyle, className, style, ...props }: CommandPaletteGroupProps): import("react").JSX.Element;
export declare namespace CommandPaletteGroup {
    var displayName: string;
}
//# sourceMappingURL=CommandPaletteGroup.d.ts.map