import { default as React } from 'react'; import { BasicInputProps } from '../BaseInput'; type ResidentNumberInputProps = Omit & { value?: string; onChange: (value: string) => void; rrnInputType?: 7 | 13; }; declare const ResidentNumberInput: React.FC; export { RRN_LENGTHS, sanitizeRRN, splitRRN } from './rrn'; export type { ResidentNumberInputProps }; export { ResidentNumberInput }; //# sourceMappingURL=index.d.ts.map