import * as React from "react";
export interface SearchItem {
id: string;
label: string;
icon?: React.ReactNode;
}
export interface SearchSection {
id: string;
title: string;
count?: number;
items: SearchItem[];
defaultExpanded?: boolean;
}
export interface SearchSidebarProps {
sections: SearchSection[];
onItemClick?: (itemId: string, sectionId: string) => void;
title?: string;
className?: string;
}
/**
* SearchSidebar component for saved searches and navigation
*
* Used in iCaptur ProHire for:
* - Saved searches
* - Shared searches
* - Search history
* - Folder navigation
*
* @example
* ```tsx
*
* ```
*/
export declare const SearchSidebar: React.ForwardRefExoticComponent>;
//# sourceMappingURL=search-sidebar.d.ts.map