import type { ValidateResult } from 'react-hook-form'; import type { TemplateVariable } from '../types'; export declare const validateMessage: (value: unknown, variables: TemplateVariable[]) => ValidateResult; export declare const createValidator: (variables: TemplateVariable[]) => MessageValidator; export type MessageValidator = (value: unknown) => ValidateResult; //# sourceMappingURL=validate.d.ts.map