import { TReferenceProps } from '../../..'; import { INumberProps, TNumberValidatorResult } from '../_types'; export interface IIsModProps { /** * The list of authorized values. */ values: number[]; /** * Wether a number should be a mod of every value. * * @default false */ matchAll?: boolean; } /** * Check if the number is a mod of the values. */ export declare const isMod: (props: TReferenceProps & INumberProps) => TNumberValidatorResult;