import { type PropsWithChildren, JSX } from 'react'; export type FilterOptionLabelProps = PropsWithChildren<{ className?: string; }>; export declare function FilterOptionLabel(props: FilterOptionLabelProps): JSX.Element;