interface Props { id: string; title?: string; initialPosition?: { x: number; y: number; }; initialSize?: { width: number; height: number; }; closable?: boolean; minimizable?: boolean; resizable?: boolean; } declare function closePanel(): void; declare function toggleMinimize(): void; declare const _default: __VLS_WithTemplateSlots, { title: string; closable: boolean; minimizable: boolean; resizable: boolean; }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { close: () => void; resize: (size: { width: number; height: number; }) => void; minimize: (minimized: boolean) => void; }, string, import('vue').PublicProps, Readonly, { title: string; closable: boolean; minimizable: boolean; resizable: boolean; }>>> & Readonly<{ onClose?: (() => any) | undefined; onResize?: ((size: { width: number; height: number; }) => any) | undefined; onMinimize?: ((minimized: boolean) => any) | undefined; }>, { title: string; closable: boolean; minimizable: boolean; resizable: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, { header?(_: { panelState: import('../composables/useDrag').PanelState; toggleMinimize: typeof toggleMinimize; closePanel: typeof closePanel; }): any; title?(_: {}): any; toolbar?(_: { panelState: import('../composables/useDrag').PanelState; }): any; controls?(_: { panelState: import('../composables/useDrag').PanelState; toggleMinimize: typeof toggleMinimize; closePanel: typeof closePanel; }): any; "content-top"?(_: { panelState: import('../composables/useDrag').PanelState; }): any; content?(_: { panelState: import('../composables/useDrag').PanelState; }): any; default?(_: {}): any; "content-bottom"?(_: { panelState: import('../composables/useDrag').PanelState; }): any; footer?(_: { panelState: import('../composables/useDrag').PanelState; }): any; }>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };