import { type Dispatch, type SetStateAction } from 'react'; export type WellSection = { value: string; label: string; color?: string; }; export type OffsetWellsBySection = Record; export type TaScore = { wellId: number; taScore: string | number; }; type UseBicWellsReturn = [ WellSection[] | null, Dispatch>, OffsetWellsBySection | null, Dispatch>, number, Dispatch>, TaScore[], OffsetWellsBySection | null ]; export declare const useBicWells: (assetId: number | null, wells: Array<{ id: number; }> | null) => UseBicWellsReturn; export {}; //# sourceMappingURL=useBicWells.d.ts.map