import React from 'react'; import { CreateProps } from '../../types/utils/CreateProps'; import { BaseInputPropsWithoutChildren } from '../Input/BaseInput'; export declare type SearchInputProps = CreateProps<{ /** The value that is set to the input */ value?: string; /** OnClick handler for the icon */ onIconClick?: () => void; /** Placeholder is visible when the input is empty */ placeholder?: string; /** Sets the input to disabled state */ disabled?: boolean; /** Custom id */ id?: string; /** Type */ type?: 'text' | 'search' | 'email' | 'password' | 'tel' | 'url' | undefined; }, BaseInputPropsWithoutChildren, 'iconName' | 'type' | 'confirmed' | 'required' | 'errorText' | 'helperText' | 'label'>; declare const SearchInput: React.FunctionComponent; export default SearchInput;