import { TReferenceProps } from '../../..'; import { IBooleanProps, TBooleanValidatorResult } from '../_types'; export interface IIsEqualToProps { /** * The list of authorized values. */ values: boolean[]; } /** * Check if the boolean is equal to a list of values. */ export declare const isEqualTo: (props: TReferenceProps & IBooleanProps) => TBooleanValidatorResult;