import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface InputBoxProperties {
    name: string;
    text: string;
    atChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
    theme?: Theme;
    style?: React.CSSProperties;
    className?: string;
    atKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
}
declare const InputBox: React.FC<InputBoxProperties>;
export default InputBox;
