import React from 'react';
import { Theme } from '@plurid/plurid-themes';
import { TextlineProperties } from '../Textline';
export interface InputLineProperties {
    name: string;
    text: string;
    atChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
    theme?: Theme;
    type?: 'text' | 'password';
    error?: boolean;
    textline?: Partial<TextlineProperties>;
    style?: React.CSSProperties;
    className?: string;
    atKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
}
declare const InputLine: React.FC<InputLineProperties>;
export default InputLine;
