/** * SearchPage Component * * Full-featured search page with advanced filters, pagination, facets, * and rich result display. Supports URL-based query parameters for * shareable search links. */ export interface SearchPageProps { /** Available entity types for the filter panel (product-specific) */ entityTypeOptions?: Array<{ value: string; label: string; }>; /** Map of entity type to icon component (product-specific) */ entityTypeIcons?: Record>; /** Search input placeholder */ placeholder?: string; /** Subtitle under the heading */ subtitle?: string; } export declare function SearchPage({ entityTypeOptions, entityTypeIcons, placeholder, subtitle, }?: SearchPageProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=SearchPage.d.ts.map