Repository URL to install this package:
|
Version:
3.4.4 ▾
|
import * as React from 'react';
import { Value } from '../../typings';
import { InputProps } from '../../inputs/typings';
import { InputState } from '../../inputs/InputState';
declare class ZipCodePlugin extends React.Component<InputProps> {
static isSatisfiedByProps(props: {
type: string;
}): boolean;
static defaultState: (inputState: InputState<import("../../inputs/typings").AnyObj>) => {
label: string;
tooltip: string;
validator: (value: Value) => boolean;
};
render(): JSX.Element;
}
export { ZipCodePlugin };
export default ZipCodePlugin;