import { Props as StringFieldProps } from '../String';
import type { ValidatorDisableable } from '../../types';
export type Props = Omit<StringFieldProps, 'onBlurValidator'> & {
    validate?: boolean;
    omitMask?: boolean;
    onBlurValidator?: ValidatorDisableable<string>;
};
declare function OrganizationNumber(props: Props): import("react/jsx-runtime").JSX.Element;
declare namespace OrganizationNumber {
    var _supportsSpacingProps: boolean;
}
export default OrganizationNumber;
