interface TIOptions { defaultKey: string; hashObjects: boolean; stringifyBoolsVerbatim: boolean; } export default class TypeInsurance { readonly input: string; readonly defaultKey: string; readonly hashObjects: boolean; readonly stringifyBoolsVerbatim: boolean; string: string; number: number; boolean: boolean; array: any[]; object: object; constructor(input: any, options?: TIOptions); __string__(): string; __number__(): number; __boolean__(): boolean; __array__(): any[]; __object__(): object; } export {};