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