import ICameraBase from "./ICameraBase";
import Defaults from "./utils/Defaults";
import { ExtractProps } from "./utils/extractProps";
import Nullable from "./utils/Nullable";
export default interface IOrbitCamera extends ICameraBase {
    targetId: Nullable<string>;
    enableZoom: boolean;
    enableFly: boolean;
    autoRotate: boolean | number;
}
export declare const orbitCameraSchema: Required<ExtractProps<IOrbitCamera>>;
export declare const orbitCameraDefaults: Defaults<IOrbitCamera>;
