import { PropType } from 'vue'; import { DefineEmits, DefineProps, Point } from '../../utils/types'; export declare const NATIVE_PROPS: { /** 控件的停靠位置 */ position: { type: PropType; default: string; }; }; export declare const OTHER_PROPS: { /** 设置控件停靠的偏移量 */ offset: { type: PropType; }; /** 是否可见 */ visible: { type: BooleanConstructor; default: boolean; }; }; export declare const NATIVE_EVENTS: {}; export declare const OTHER_EVENTS: { init: (e: T.Control) => boolean; }; export declare const PROPS: { /** 设置控件停靠的偏移量 */ offset: { type: PropType; }; /** 是否可见 */ visible: { type: BooleanConstructor; default: boolean; }; /** 控件的停靠位置 */ position: { type: PropType; default: string; }; }; export declare const EVENTS: { init: (e: T.Control) => boolean; }; export type Props = DefineProps; export type Emit = DefineEmits;