import type { ExtractPropTypes, PropType } from 'vue';
import { VcComponentInternalInstance } from 'vue-cesium/es/utils/types';
import { VcBillboardProps } from '../billboard';
export declare const billboardCollectionProps: {
    billboards: {
        type: PropType<VcBillboardProps[]>;
        default: () => any[];
    };
    enableMouseEvent: {
        type: BooleanConstructor;
        default: boolean;
    };
    show: {
        type: PropType<boolean>;
        default: boolean;
    };
    blendOption: {
        type: PropType<number>;
        default: number;
    };
    scene: PropType<Cesium.Scene>;
};
declare const _default: import("vue").DefineComponent<{
    billboards: {
        type: PropType<VcBillboardProps[]>;
        default: () => any[];
    };
    enableMouseEvent: {
        type: BooleanConstructor;
        default: boolean;
    };
    show: {
        type: PropType<boolean>;
        default: boolean;
    };
    blendOption: {
        type: PropType<number>;
        default: number;
    };
    scene: PropType<Cesium.Scene>;
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
    [key: string]: any;
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
    beforeLoad: (instance: VcComponentInternalInstance) => boolean;
    ready: (readyObj: import("vue-cesium/es/utils/types").VcReadyObject) => boolean;
    destroyed: (instance: VcComponentInternalInstance) => boolean;
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
    billboards: {
        type: PropType<VcBillboardProps[]>;
        default: () => any[];
    };
    enableMouseEvent: {
        type: BooleanConstructor;
        default: boolean;
    };
    show: {
        type: PropType<boolean>;
        default: boolean;
    };
    blendOption: {
        type: PropType<number>;
        default: number;
    };
    scene: PropType<Cesium.Scene>;
}>> & {
    onBeforeLoad?: (instance: VcComponentInternalInstance) => any;
    onReady?: (readyObj: import("vue-cesium/es/utils/types").VcReadyObject) => any;
    onDestroyed?: (instance: VcComponentInternalInstance) => any;
}, {
    show: boolean;
    enableMouseEvent: boolean;
    blendOption: number;
    billboards: VcBillboardProps[];
}>;
export default _default;
export declare type VcCollectionBillboardProps = ExtractPropTypes<typeof billboardCollectionProps>;
