import type { ReactNode } from 'react';
export type FilterPanelProps = {
    className?: string;
    children?: ReactNode;
};
declare function FilterPanel({ className, children }: FilterPanelProps): import("react/jsx-runtime").JSX.Element;
export default FilterPanel;
