import { TextFieldProps } from "@mui/material/TextField";
/**
 * Search field props
 */
export type SearchFieldProps = TextFieldProps & {
    /**
     * Change delay (ms) to avoid repeatly dispatch onChange
     */
    changeDelay?: number;
    /**
     * Is the field read only?
     */
    readOnly?: boolean;
    /**
     * Minimum characters to trigger the change event
     */
    minChars?: number;
};
/**
 * Search field
 * @param props Props
 * @returns Component
 */
export declare function SearchField(props: SearchFieldProps): import("react/jsx-runtime").JSX.Element;
