import { BaseError } from 'make-error'; import { Constrained, Rule } from '../../core'; type Result = [ Rule>, typeof BaseError, (input: unknown) => input is Constrained ]; export declare function regexRuleConstructor(regex: RegExp, symbol: T, ruleName?: string): Result; export {};