import { FetchedOffsetWell } from '../types'; export type GetAllAssetsProgress = { loaded: number; isComplete: boolean; }; export type GetAllAssetsOptions = { signal?: AbortSignal; onProgress?: (progress: GetAllAssetsProgress) => void; drillingWells?: boolean; }; /** * Fetches all well assets without geographic bounds. * Similar to getAssetsByBounds but without lat/long constraints. * Fetches data in chunks of 2000 wells with progress reporting. */ export declare const getAllAssets: (companyIds?: number[] | null, options?: GetAllAssetsOptions) => Promise; //# sourceMappingURL=getAllAssets.d.ts.map