/** * Hairline separator in the theme border color. * - Horizontal by default; `vertical` for inline groups (toolbars, breadcrumbs). * - Default slot (or `label`) renders centered text with a line on each side * (horizontal only) — e.g. an "OR" divider. * - `size` sets the length of a vertical divider (maps to --divider-size). */ type __VLS_Props = { vertical?: boolean; label?: string; size?: string; class?: string; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; //# sourceMappingURL=Divider.vue.d.ts.map