import * as React from 'react'; import { AddressInputProps as CoreAddressInputProps } from 'wix-ui-core/dist/src/components/address-input'; import { Omit } from '../../types/common'; export declare type excludeProps = 'forceContentElementVisibility' | 'forceOptions' | 'throttleInterval' | 'locationIcon'; export interface AddressInputProps extends Omit { size?: 'large' | 'medium' | 'small'; showLocationIcon?: boolean; magnifyingGlass?: boolean; } export declare class AddressInput extends React.PureComponent { static displayName: string; addressInputRef: any; static bypassDefaultPropsTypecheck: any; static defaultProps: { size: string; magnifyingGlass: boolean; }; focus(): void; blur(): void; render(): JSX.Element; }