interface Props { /** Lay panels side-by-side. Default: vertical (stacked). */ horizontal?: boolean; /** * Stack panels vertically when the container is narrower than `breakpoint`. * Only applies when `horizontal` is set. Default: true. * Set `:breakpoint="0"` to disable responsive switching entirely. */ mobileVertical?: boolean; /** Width (px) below which the mobile layout activates. @default MOBILE_BREAKPOINT (910) */ breakpoint?: number; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: { containerEl: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent & Readonly<{}>, { horizontal: boolean; breakpoint: number; mobileVertical: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { containerEl: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; //# sourceMappingURL=Resizable.vue.d.ts.map