import { type ReactNode } from 'react'; export type OrganizationGroupProps = { children: ReactNode; label: string; }; export declare const OrganizationGroup: (props: OrganizationGroupProps) => JSX.Element;