/// interface SearchOptionsProps { order: string; searchType: "projects" | "accounts"; projectCount: number; accountCount: number; setSearchType: (value: any) => void; setOrder: (value: any) => void; } export declare function SearchOptions(props: SearchOptionsProps): JSX.Element; export {};