import { CommandGroupAlignment } from './CommandGroup.styled'; type Props = { groupKey: string; title?: string; align?: CommandGroupAlignment; }; declare const CommandGroup: ({ groupKey, title, align }: Props) => import("react/jsx-runtime").JSX.Element | null; export default CommandGroup;