Repository URL to install this package:
|
Version:
3.1.2 ▾
|
import * as React from 'react';
import { Value } from '../typings';
import { InputProps } from '../inputs/typings';
import { InputState } from '../inputs/InputState';
declare class NamePlugin extends React.Component<InputProps> {
static isSatisfiedByProps(props: {
type: string;
}): boolean;
static defaultState: (state: InputState<import("../inputs/typings").AnyObj>) => {
propertyName: string;
'data-qa': string;
autocomplete: string;
label: string;
required: boolean;
validator: (value: Value) => string | true;
dataQa?: undefined;
} | {
propertyName: string;
label: string;
autocomplete: string;
dataQa: string;
required: boolean;
validator: (value: Value) => string | true;
'data-qa'?: undefined;
} | undefined;
render(): JSX.Element;
}
export { NamePlugin };
export default NamePlugin;