export interface IRawAbiTypeRoot {
    type: string;
    typeId: number;
    components: null | IRawAbiTypeComponent[];
    typeParameters: null | number[];
}
export interface IRawAbiTypeComponent {
    name: string;
    type: number;
    typeArguments: null | IRawAbiTypeComponent[];
}
//# sourceMappingURL=IRawAbiType.d.ts.map