import * as React from "react"; interface IProps extends React.InputHTMLAttributes { background?: "white" | "gray" | "purple"; inputRef?: React.Ref; showResetButton?: boolean; showSecondaryIcon?: boolean; reset?: () => void; small?: boolean; } export declare const DSSearchInput: ({ background, className, inputRef, showResetButton, reset, onBlur, onFocus, small, ...props }: IProps) => JSX.Element; export {};