import { ComponentType } from 'react'; interface FilterSiderProps { title: string; field: string; resource: string; component: () => Promise<{ default: ComponentType; }>; optionLabel?: string; optionValue?: string; defaultSelect?: boolean; } export declare const FilterSider: ({ field, title, resource, component, optionLabel, optionValue, defaultSelect, }: FilterSiderProps) => import("react/jsx-runtime").JSX.Element; export {};