import * as React from 'react'; import { SupplyRefHandler } from '../Collector'; interface FocalTargetChildProps { ref: SupplyRefHandler; } interface FocalTargetProps { children: (props: FocalTargetChildProps) => React.ReactNode; } declare const FocalTarget: React.FC; export default FocalTarget;