import { Component } from 'vue'; /** * Visual variants supported by the shared ribbon property field shell. */ type RibbonPropertyFieldVariant = 'color' | 'line-type' | 'line-weight'; /** * Props shared by ribbon property field wrappers. */ interface RibbonPropertyFieldProps { /** Icon rendered beside the embedded control. */ icon: string | Component; /** Disables the field while preserving its current value display. */ disabled?: boolean; /** Variant-specific styling hook used by the ribbon layout. */ variant?: RibbonPropertyFieldVariant; /** Optional fixed width for the embedded control area. */ controlWidth?: string; } declare var __VLS_5: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_5) => any; }; declare const __VLS_component: import('vue').DefineComponent>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; declare const _default: __VLS_WithSlots; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithSlots = T & { new (): { $slots: S; }; }; //# sourceMappingURL=MlRibbonPropertyField.vue.d.ts.map