import type { FetchedOffsetWell } from '../../api/shared/types'; import type { WellSection, OffsetWellsBySection } from '../useBicWells'; export type TransformedWell = FetchedOffsetWell & { distance?: number; wellSection?: string[]; }; export declare const useAdvancedWells: (rawWells: FetchedOffsetWell[] | null, wellSections: WellSection[] | null, offsetWellsBySection: OffsetWellsBySection | null, subjectWellId: number | null, metricsKeys: string[], open: boolean | undefined) => [TransformedWell[] | null, boolean, TransformedWell[] | null, Set]; //# sourceMappingURL=useAdvancedWells.d.ts.map