import { default as React, PropsWithChildren } from 'react';
import { CommandPaletteTheme } from '../CommandPaletteTheme';
export interface CommandPaletteSectionProps extends PropsWithChildren {
    /**
     * Section title.
     */
    title?: string;
    /**
     * Additional class name.
     */
    className?: string;
    /**
     * Section stack index. Set internally.
     */
    index?: number;
    /**
     * Theme for the CommandPalette.
     */
    theme?: CommandPaletteTheme;
}
export declare const CommandPaletteSection: React.ForwardRefExoticComponent<CommandPaletteSectionProps & React.RefAttributes<HTMLDivElement>>;
