export declare class ValidationUtil { static checkExists(objectName: string, object: any): void; static checkPropertyExists(objectName: string, object: any, propertyName: string): void; static checkFunctionExists(objectName: string, object: any, functionName: string): void; static isFunction(object: any): boolean; } export default ValidationUtil;