import * as React from 'react'; import type { SearchCitiesResponse } from '../types/index.js'; type ElementAttrs = Omit, 'children'>; export interface RoxyLocationSearchProps extends ElementAttrs { className?: string; style?: React.CSSProperties; /** Fires when the underlying dispatches `roxy-location-select`. */ onRoxyLocationSelect?: (event: CustomEvent[number] | { latitude?: number; longitude?: number; timezone?: string; utcOffset?: number; city?: string; province?: string; country?: string; }>) => void; /** Fires when the underlying dispatches `roxy-validation-error`. */ onRoxyValidationError?: (event: CustomEvent<{ reason: string; message: string; }>) => void; } export declare const RoxyLocationSearch: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=location-search.d.ts.map