jslib-nightly
Version:
SheerID JavaScript Library
7 lines (6 loc) • 303 B
TypeScript
import { FormFieldComponentProps } from '../../../lib/types/types';
interface PassedProps {
explanation?: string | JSX.Element;
}
declare const PostalCodeComponent: ({ value, isErrored, onChange, explanation, }: FormFieldComponentProps & PassedProps) => JSX.Element;
export { PostalCodeComponent };