import { Camera } from 'cesium'; type Options = Parameters[0]; export type CameraFlyToProps = Omit & { onComplete?: Options["complete"]; onCancel?: Options["cancel"]; /** If true, cancel camera flight if this component is unmounted. Default value is false. */ cancelFlightOnUnmount?: boolean; /** If true, camera flight will be executed only once time. */ once?: boolean; }; declare const CameraFlyTo: import('react').FC & { onComplete?: Options["complete"]; onCancel?: Options["cancel"]; /** If true, cancel camera flight if this component is unmounted. Default value is false. */ cancelFlightOnUnmount?: boolean; /** If true, camera flight will be executed only once time. */ once?: boolean; } & import('..').CameraOperationProps>; export default CameraFlyTo;