export interface ParsedTypeId {
    id: string;
    head: string;
    args?: ParsedTypeId[];
    tail?: string;
    rets?: ParsedTypeId[];
}
export declare function parseTypeId(id: string): ParsedTypeId;
//# sourceMappingURL=parse-type-id.d.ts.map