@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
13 lines (12 loc) • 489 B
TypeScript
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;