@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
13 lines (12 loc) • 486 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 BankAccountNumber(props: Props): import("react/jsx-runtime").JSX.Element;
declare namespace BankAccountNumber {
var _supportsSpacingProps: boolean;
}
export default BankAccountNumber;