import type { Type } from "../Type"; export declare class IndexedAccessType { private readonly _objectType; private readonly _indexType; /** * Object type */ get objectType(): Type; /** * Index type */ get indexType(): Type; }