import { AbstractTextInputProps } from "../../text-input"; import { ComponentProps, SyntheticEvent } from "react"; import { OmitInternalProps } from "../../shared"; declare const DefaultElement = "input"; export interface InnerSearchInputProps extends Omit, "onValueChange"> { /** * Called when the input value change. * @param {SyntheticEvent} event - React's original event. * @param {string} value - The new input value. * @returns {void} */ onValueChange?: (event: SyntheticEvent, value: string) => void; } export declare function InnerSearchInput(props: InnerSearchInputProps): JSX.Element; export declare namespace InnerSearchInput { var defaultElement: string; } /** * [Documentation](https://orbit.sharegate.design/?path=/docs/text-input--default-story) */ export declare const SearchInput: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type SearchInputProps = ComponentProps; export {};