import type { FormContextType } from '../useForm/Form';
export declare const getValues: (formContext: FormContextType, name: string, value: any) => any;
export declare const getRequired: (formContext: FormContextType, name: string, required?: string | boolean) => string | boolean;
export declare const getError: (formContext: FormContextType, name: string, error?: string | React.ReactNode | null | Function) => any;
export declare const getDisabled: (formContext: FormContextType, name: string, disabled?: boolean) => any;
export declare const getOnChange: (formContext: FormContextType, onChange?: Function) => Function;
export declare const getMessagePure: (fieldName: string, fieldNameTH: string, locale: string) => string;
export declare const getMessageReq: (fieldName: string, fieldNameTH?: string, locale?: string) => string;
