import { default as React, ReactNode } from 'react'; export type ListBoxGroup = { options: T[]; groupValue: string; children: ReactNode; }; export declare function ListBoxGroup({ groupValue, options, children, }: ListBoxGroup): React.JSX.Element; //# sourceMappingURL=ListBoxGroup.d.ts.map