import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
import { RootEmits, RootProps } from './segment-group.types';
import { ValueChangeDetails } from '@zag-js/radio-group';
export interface SegmentGroupRootBaseProps extends RootProps, PolymorphicProps {
}
export interface SegmentGroupRootProps extends SegmentGroupRootBaseProps, 
/**
 * @vue-ignore
 */
HTMLAttributes {
}
export interface SegmentGroupRootEmits extends RootEmits {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<SegmentGroupRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
    valueChange: (details: ValueChangeDetails) => any;
    "update:modelValue": (value: string | null) => any;
}, string, PublicProps, Readonly<SegmentGroupRootProps> & Readonly<{
    onValueChange?: ((details: ValueChangeDetails) => any) | undefined;
    "onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
}>, {
    disabled: boolean;
    readOnly: boolean;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
    default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
