import { InputTypeType } from '../types/inputType';
import { InternalErrorType } from '../types/internalErrors';
type ReturnType = {
    internalErrors: string[];
    checkInternalValidations: (value: string) => void;
    addInternalError: (internalErrorType: InternalErrorType) => void;
    removeInternalError: (internalErrorType: InternalErrorType) => void;
};
export declare const useInternalValidations: (type?: InputTypeType, minLength?: number, onInternalErrors?: (errors: string[]) => void) => ReturnType;
export {};
