import type { AppConfig } from '@nuxt/schema'; import type { ComponentConfig } from '@nuxt/ui'; import theme from '#build/ui-pro/dashboard-panel'; import type { UseResizableProps } from '../composables/useResizable'; type DashboardPanel = ComponentConfig; export interface DashboardPanelProps extends Pick { class?: any; ui?: DashboardPanel['slots']; } export interface DashboardPanelSlots { 'default'(props?: {}): any; 'header'(props?: {}): any; 'body'(props?: {}): any; 'footer'(props?: {}): any; 'resize-handle'(props: { onMouseDown: (e: MouseEvent) => void; onTouchStart: (e: TouchEvent) => void; }): any; } declare const _default: __VLS_WithSlots & Readonly<{}>, { minSize: number; resizable: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, DashboardPanelSlots>; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };