import { FC } from 'react'; import { CompletionsOffsetWellPickerProps, MappedPad } from '../types'; import { usePadTableHandlers } from './helpers/usePadTableHandlers'; type Props = { data: MappedPad; handleSelectPad: ReturnType['handleSelectPad']; handleSelectWellId: ReturnType['handleSelectWellId']; isExpanded: boolean; isMainPad: boolean; searchText: string; } & Pick; declare const PadTableRow: FC; export default PadTableRow; //# sourceMappingURL=PadTableRow.d.ts.map