import { AbstractType } from "./AbstractType"; import { Req, scalar } from "@huz-com/types"; import { TitleTypeOption } from "./index.interfaces"; declare type T = scalar.Title; declare type O = TitleTypeOption; export declare class TitleType extends AbstractType { protected static _ins: TitleType; /** * Returns skeleton instance * */ static ins(): TitleType; constructor(); /** * Checks is title? */ is(value: scalar.Unknown, opt?: O, req?: Req): boolean; /** * Converts a value to title */ cast(value: scalar.Unknown, opt?: O, req?: Req): T | null; } export {};