/**
 * @file index.tsx
 *
 * @fileoverview Displays a google places API Autocomplete component.
 */
import React from 'react';
import { GeosuggestProps } from 'react-geosuggest';
export interface GoogleGEOAutocompleteProps extends GeosuggestProps {
    /**
     * Input size.
     *
     * @default "40"
     */
    size?: number;
    /**
     * Elements to display on focus.
     */
    focusElements?: React.ReactNode;
    /**
     * Ref for the component.
     */
    refElement?: any;
}
export declare const StyledFocusElementsWrapp: import("styled-components").StyledComponent<"div", any, {}, never>;
export declare const GoogleGEOAutocomplete: ({ size, refElement, focusElements, ...props }: GoogleGEOAutocompleteProps) => JSX.Element;
export default GoogleGEOAutocomplete;
