interface IsNationalIdOptions { min: number; max: number; } declare const isNationalId: (id: unknown, { min, max }: IsNationalIdOptions) => boolean; export { isNationalId };