import React from "react"; export interface SidebarListProps { filterType?: string; options?: { id?: number; component?: React.ReactElement | undefined; }[]; setChecked?: (filters: any) => void; checked?: any; } declare const SidebarList: ({ filterType, options, setChecked, checked, }: SidebarListProps) => JSX.Element; export default SidebarList;