import { t } from '../common'; export declare type IArgs = { uri: string | t.INsUri; }; export declare class TypeBuilderNs implements t.ITypeBuilderNs { static create: (args: IArgs) => t.ITypeBuilderNs; private constructor(); readonly uri: t.INsUri; readonly types: t.ITypeBuilderType[]; toString(): string; type(typename: string, options?: { startColumn?: string | number; }): t.ITypeBuilderType; }