import { CSSProperties } from 'vue'; export type ResizeHandlePosition = 'top-left' | 'top-center' | 'top-right' | 'center-left' | 'center-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'; export interface ResizeHandle { position: ResizeHandlePosition; cursor: string; } type __VLS_Props = { modelValue: CSSProperties; handles?: ResizeHandlePosition[]; maintainAspectRatio?: boolean; }; declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: Record) => any; "resize-start": () => any; "resize-end": () => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ "onUpdate:modelValue"?: ((value: Record) => any) | undefined; "onResize-start"?: (() => any) | undefined; "onResize-end"?: (() => any) | undefined; }>, { handles: ResizeHandlePosition[]; maintainAspectRatio: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; export default _default;