declare function __VLS_template(): {
    slots: {
        empty?(_: {
            class: string;
        }): any;
        default?(_: {}): any;
    };
    refs: {
        chartRef: HTMLDivElement;
    };
    attrs: Partial<{}>;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
    options: {
        type: ObjectConstructor;
        default: {};
    };
    id: {
        type: StringConstructor;
        default: () => string;
    };
    theme: {
        type: StringConstructor;
        default: string;
    };
    mapName: {
        type: StringConstructor;
        default: string;
    };
    mapJson: {
        type: ObjectConstructor;
        default: {};
    };
    isEmpty: {
        type: (BooleanConstructor | FunctionConstructor)[];
        default: boolean;
    };
    description: {
        type: StringConstructor;
        default: string;
    };
}>, {
    myChart: import('vue').ShallowRef<any, any>;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, import('vue').PublicProps, any, {
    theme: string;
    id: string;
    options: Record<string, any>;
    mapName: string;
    mapJson: Record<string, any>;
    isEmpty: boolean | Function;
    description: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
