VectorStoreFilesPage: {
    #private: any;
    [asyncIterator]: (() => AsyncGenerator<VectorStoreFile, any, any>);
    body: unknown;
    data: VectorStoreFile[];
    getNextPage: (() => Promise<VectorStoreFilesPage>);
    getPaginatedItems: (() => VectorStoreFile[]);
    hasNextPage: (() => boolean);
    has_more: boolean;
    iterPages: (() => AsyncGenerator<VectorStoreFilesPage, any, any>);
    nextPageRequestOptions: (() => null | PageRequestOptions);
    options: FinalRequestOptions;
    response: Response;
}