import IType from './i_type'; declare class StringType implements IType { get name(): string; } export default StringType;