declare type Value = 'string' | 'number' | 'array' | 'object' | 'boolean' | 'undefined';
export default function validateType(message: string, value: any, fieldName: string, expectedType: Value): void;
export declare function validateUserInputType(message: string, value: any, fieldName: string, expectedType: Value): void;
export {};
