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

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