import { CSSProperties } from "preact/compat";
type Props = {
    style?: CSSProperties;
    fullWidth?: boolean;
    onChange?: (val: string) => void;
    clearOnChange?: any;
    placeholder?: string;
};
declare const TextBox: ({ style, fullWidth, onChange, clearOnChange, placeholder }: Props) => import("preact/compat").JSX.Element;
export default TextBox;
