import React from 'react'; import { InputFieldProps } from '../internal/input-field'; export type InputSearchProps = { autoFocus?: boolean; } & InputFieldProps; declare const InputSearch: React.ForwardRefExoticComponent<{ autoFocus?: boolean | undefined; } & { error?: boolean | undefined; hintColor?: "primary" | "secondary" | "tertiary" | "quaternary" | "quinary" | "success" | "info" | "error" | "senary" | keyof import("../..").ThemeSecondaryPalette | "danger" | undefined; hintText?: string | undefined; iconLeftProps?: (import("../icon").IconProps & { name: import("../icon").IconsFlags | "16-arrow-down" | "16-calendar" | "16-checkbox-selected" | "16-checkbox-unselected" | "16-checkbox-rounded-selected" | "16-checkbox-rounded-unselected" | "16-checkmark" | "16-end-location" | "16-info" | "16-minus" | "16-pencil" | "16-pin" | "16-plus" | "16-search" | "16-airplane" | "24-ac" | "24-add-additional-driver" | "24-additional-driver" | "24-guarantee" | "24-airplane" | "24-amex" | "24-android-auto" | "24-apple-pay" | "24-apple" | "24-arrow-down-small" | "24-arrow-left" | "24-arrow-right-rounded" | "24-arrow-right-small" | "24-arrow-right" | "24-arrow-up-small" | "24-back-arrow" | "24-blind-spot-warning" | "24-bluetooth" | "24-breadcrumb-separator" | "24-calendar" | "24-car-play" | "24-car-with-key" | "24-charger" | "24-chat" | "24-checkbox-selected" | "24-checkbox-unselected" | "24-checkmark-rounded" | "24-checkmark" | "24-close-big" | "24-close-rounded" | "24-close-small" | "24-close" | "24-hurry" | "24-high-demand" | "24-copy" | "24-credit-card" | "24-diners" | "24-discover" | "24-docs" | "24-end-location" | "24-envelope" | "24-eye-crossed" | "24-terminal" | "24-eye" | "24-facebook" | "24-fuel" | "24-gearbox" | "24-generic-address" | "24-google" | "24-handshake" | "24-heated-seats" | "24-info-big" | "24-info-small" | "24-info" | "24-instagram" | "24-invite" | "24-lock" | "24-lock-and-shield" | "24-mastercard" | "24-minus-rounded" | "24-notifications" | "24-paper-plane" | "24-people" | "24-phone-mount" | "24-photo" | "24-pin" | "24-plus-rounded" | "24-presentation" | "24-question" | "24-radio-button-selected" | "24-radio-button-unselected" | "24-road" | "24-search" | "24-settings" | "24-shared-trip" | "24-star" | "24-suitcase" | "24-surfer" | "24-trash" | "24-twitter" | "24-unlock" | "24-user" | "24-visa" | "24-verified" | "24-wallet" | "24-warning" | "24-yelp" | "24-share-location"; }) | undefined; iconRightProps?: (import("../icon").IconProps & { name: import("../icon").IconsFlags | "16-arrow-down" | "16-calendar" | "16-checkbox-selected" | "16-checkbox-unselected" | "16-checkbox-rounded-selected" | "16-checkbox-rounded-unselected" | "16-checkmark" | "16-end-location" | "16-info" | "16-minus" | "16-pencil" | "16-pin" | "16-plus" | "16-search" | "16-airplane" | "24-ac" | "24-add-additional-driver" | "24-additional-driver" | "24-guarantee" | "24-airplane" | "24-amex" | "24-android-auto" | "24-apple-pay" | "24-apple" | "24-arrow-down-small" | "24-arrow-left" | "24-arrow-right-rounded" | "24-arrow-right-small" | "24-arrow-right" | "24-arrow-up-small" | "24-back-arrow" | "24-blind-spot-warning" | "24-bluetooth" | "24-breadcrumb-separator" | "24-calendar" | "24-car-play" | "24-car-with-key" | "24-charger" | "24-chat" | "24-checkbox-selected" | "24-checkbox-unselected" | "24-checkmark-rounded" | "24-checkmark" | "24-close-big" | "24-close-rounded" | "24-close-small" | "24-close" | "24-hurry" | "24-high-demand" | "24-copy" | "24-credit-card" | "24-diners" | "24-discover" | "24-docs" | "24-end-location" | "24-envelope" | "24-eye-crossed" | "24-terminal" | "24-eye" | "24-facebook" | "24-fuel" | "24-gearbox" | "24-generic-address" | "24-google" | "24-handshake" | "24-heated-seats" | "24-info-big" | "24-info-small" | "24-info" | "24-instagram" | "24-invite" | "24-lock" | "24-lock-and-shield" | "24-mastercard" | "24-minus-rounded" | "24-notifications" | "24-paper-plane" | "24-people" | "24-phone-mount" | "24-photo" | "24-pin" | "24-plus-rounded" | "24-presentation" | "24-question" | "24-radio-button-selected" | "24-radio-button-unselected" | "24-road" | "24-search" | "24-settings" | "24-shared-trip" | "24-star" | "24-suitcase" | "24-surfer" | "24-trash" | "24-twitter" | "24-unlock" | "24-user" | "24-visa" | "24-verified" | "24-wallet" | "24-warning" | "24-yelp" | "24-share-location"; }) | undefined; leftContent?: (() => React.ReactNode) | undefined; mask?: string | (string | RegExp)[] | undefined; maskPlaceholder?: string | null | undefined; onChangeText?: ((nextValue: string) => void) | undefined; placeholder: string; testID?: string | undefined; value?: string | undefined; hideLabel?: boolean | undefined; inlineLabel?: boolean | undefined; borderWidth?: keyof import("../..").ThemeBorderWidths | undefined; disableSearch?: boolean | undefined; centerInputText?: boolean | undefined; } & React.InputHTMLAttributes & React.RefAttributes>; export default InputSearch;