type CategoryProps = { name: string; moreLabel: string; children: JSX.HTMLAttributes['children']; disabled?: boolean; }; export declare function Category({ disabled, name, children, moreLabel }: CategoryProps): JSX.Element; export {};