export interface ELSearchBarAutocompleteServiceItem { type: 'ambulatory' | 'service' | 'specialization'; label: string; } export interface ELSearchBarProps { mobileLayout: 'column' | 'row'; service: string; location: string; onServiceChange: (specialization: string) => void; onDebouncedServiceChange: (specialization: string) => void; onLocationChange: (location: string) => void; onDebouncedLocationChange: (location: string) => void; services: ELSearchBarAutocompleteServiceItem[]; locations: string[]; servicePlaceholder: string; locationPlaceholder: string; withoutSearchButtonBackground?: boolean; searchButtonClassName?: string; debounceTime?: number; } export declare const defaultServices: ELSearchBarAutocompleteServiceItem[]; export declare const defaultLocations: string[]; export declare const ELSearchBar: ({ mobileLayout, service, location, onServiceChange, onDebouncedServiceChange, onLocationChange, onDebouncedLocationChange, services, locations, servicePlaceholder, locationPlaceholder, searchButtonClassName, withoutSearchButtonBackground, debounceTime, }: ELSearchBarProps) => import("react/jsx-runtime").JSX.Element;