import type { VariantProps } from 'tailwind-variants';
declare const buttonGroup: import("tailwind-variants").TVReturnType<{
    size: {
        xs: string;
        sm: string;
        md: string;
        lg: string;
    };
    orientation: {
        horizontal: string;
        vertical: string;
    };
}, undefined, string, {
    size: {
        xs: string;
        sm: string;
        md: string;
        lg: string;
    };
    orientation: {
        horizontal: string;
        vertical: string;
    };
}, undefined, import("tailwind-variants").TVReturnType<{
    size: {
        xs: string;
        sm: string;
        md: string;
        lg: string;
    };
    orientation: {
        horizontal: string;
        vertical: string;
    };
}, undefined, string, {
    size: {
        xs: string;
        sm: string;
        md: string;
        lg: string;
    };
    orientation: {
        horizontal: string;
        vertical: string;
    };
}, undefined, import("tailwind-variants").TVReturnType<{
    size: {
        xs: string;
        sm: string;
        md: string;
        lg: string;
    };
    orientation: {
        horizontal: string;
        vertical: string;
    };
}, undefined, string, unknown, unknown, undefined>>>;
type ButtonGroupVariants = VariantProps<typeof buttonGroup>;
export interface ButtonGroupProps {
    /**
     * The element or component this component should render as.
     * @defaultValue 'div'
     */
    as?: any;
    /**
     * @defaultValue 'md'
     */
    size?: ButtonGroupVariants['size'];
    /**
     * The orientation the buttons are laid out.
     * @defaultValue 'horizontal'
     */
    orientation?: ButtonGroupVariants['orientation'];
    /**
     * Disable show split
     * @defaultValue false
     */
    noSplit?: boolean;
    class?: any;
}
export interface ButtonGroupSlots {
    default(props?: {}): any;
}
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ButtonGroupProps>, {
    orientation: string;
    noSplit: boolean;
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ButtonGroupProps>, {
    orientation: string;
    noSplit: boolean;
}>>> & Readonly<{}>, {
    orientation: "horizontal" | "vertical";
    noSplit: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Readonly<ButtonGroupSlots> & ButtonGroupSlots>;
export default _default;
type __VLS_WithDefaults<P, D> = {
    [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
        default: D[K];
    }> : P[K];
};
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
type __VLS_TypePropsToOption<T> = {
    [K in keyof T]-?: {} extends Pick<T, K> ? {
        type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
    } : {
        type: import('vue').PropType<T[K]>;
        required: true;
    };
};
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
type __VLS_PrettifyLocal<T> = {
    [K in keyof T]: T[K];
} & {};
