import { Camera } from 'cesium'; import { StaticMethodOptions2 } from '../core'; type Options = StaticMethodOptions2; export type CameraFlyToBoundingSphereProps = Omit & { boundingSphere: Parameters[0]; 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 CameraFlyToBoundingSphere: import('react').FC & { boundingSphere: Parameters[0]; 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 CameraFlyToBoundingSphere;