import { default as React } from 'react';
import { FormFieldComponentProps } from '../../../lib/types/types';

interface PassedProps {
    explanation?: JSX.Element;
    label?: JSX.Element;
}
export declare const MemberId: ({ value, isErrored, onChange, explanation, intl, placeholder, isRequired, label, disabled, }: FormFieldComponentProps & PassedProps) => React.JSX.Element;
export declare const MemberIdComponent: React.ComponentClass<Pick<FormFieldComponentProps<any> & PassedProps, "isErrored" | "onChange" | "value" | "disabled" | "onKeyDown" | "label" | "placeholder" | "autoFocus" | "isRequired" | "explanation" | "errorId" | "verificationService">, any> & {
    WrappedComponent: React.ComponentType<FormFieldComponentProps<any> & PassedProps & ReactIntl.InjectedIntlProps>;
};
export {};
