import * as React from 'react'; interface Props { title: string; collapsedInfo: string[]; children: React.ReactNode; } export declare function QueryOptionGroup({ title, children, collapsedInfo }: Props): import("react/jsx-runtime").JSX.Element; export {};