import { Type } from "./Type";
export default class CustomType implements Type {
    readonly name: string;
    constructor(name: string);
    serialize(): Object;
    static deserialize(raw: any): CustomType;
}
