import * as React from 'react';
import { ItemProps, ItemDataProps } from '../../common/propTypes';
export default class VsTextInput extends React.Component<ItemProps> {
    constructor(props: ItemProps);
    render(): JSX.Element;
    getValue(dataProps: ItemDataProps): any;
    changeValue: (dataProps: ItemDataProps) => (evt: React.ChangeEvent<HTMLInputElement>) => void;
}
