import { jsx } from '@emotion/react';
export interface Props {
    boundariesElement?: HTMLElement;
    defaultValue?: string;
    mountPoint?: HTMLElement;
    onBlur?: (text: string) => void;
    onSubmit?: (text: string) => void;
    placeholder?: string;
}
export interface State {
    text: string;
}
export declare const Input: (props: Props) => jsx.JSX.Element;
