import type { BscType } from './BscType'; export declare class ArrayType implements BscType { constructor(...innerTypes: BscType[]); innerTypes: BscType[]; isAssignableTo(targetType: BscType): boolean; isConvertibleTo(targetType: BscType): boolean; toString(): string; toTypeString(): string; clone(): ArrayType; }