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