import type { VcBtnTooltipProps } from 'vue-cesium/es/utils/types'; import type { PropType } from 'vue'; declare const defaultProps: { outerOptions: { type: PropType; default: () => VcBtnTooltipProps; }; innerOptions: { type: PropType; default: () => VcBtnTooltipProps; }; markerOptions: { type: PropType; default: () => VcBtnTooltipProps; }; position: { type: PropType<"right" | "top" | "bottom" | "left" | "top-right" | "top-left" | "bottom-right" | "bottom-left">; default: string; validator: (v: string) => boolean; }; offset: { type: PropType; validator: (v: any) => boolean; }; enableCompassOuterRing: { type: BooleanConstructor; default: boolean; }; duration: { type: NumberConstructor; default: number; }; }; declare const defaultOptions: { outerOptions: { type: PropType; default: () => VcBtnTooltipProps; }; innerOptions: { type: PropType; default: () => VcBtnTooltipProps; }; markerOptions: { type: PropType; default: () => VcBtnTooltipProps; }; position: { type: PropType<"right" | "top" | "bottom" | "left" | "top-right" | "top-left" | "bottom-right" | "bottom-left">; default: string; validator: (v: string) => boolean; }; offset: { type: PropType; validator: (v: any) => boolean; }; enableCompassOuterRing: { type: BooleanConstructor; default: boolean; }; duration: { type: NumberConstructor; default: number; }; }; export { defaultProps, defaultOptions };