import FormAbstract, { FormAbstractProps } from './FormAbstract';
import ActionAbstract from '../../action/ActionAbstract';
import { TextInputProps as NewTextInputProps } from '../../common/types/TextInput';
export type TextInputList = NewTextInputProps & {
    key?: string;
    name?: string;
    selected?: boolean;
};
export type TextInputProps = FormAbstractProps & {
    list: TextInputList[];
};
export default class TextInput extends FormAbstract {
    action?: ActionAbstract;
    list: TextInputList[];
    constructor(props: TextInputProps, action?: ActionAbstract);
}
