import { TypeBase } from './base'; import { LangList } from '../types/lang'; export declare const messages: LangList; /** * Function class */ export declare class TypeFunc extends TypeBase { /** * Constructor */ constructor(); _cast(): void; /** * Test to validate the type of the value * * @return {this} */ typeof(): this; } declare const def: { Class: typeof TypeFunc; messages: LangList; }; export default def;