import type { VariantProps } from 'tailwind-variants';
import type { SeparatorProps as _SeparatorProps } from 'reka-ui';
import type { AvatarProps, IconComponent } from '../types';
declare const separator: import("tailwind-variants").TVReturnType<{
    color: {
        default: {
            border: string;
        };
        danger: {
            border: string;
        };
        success: {
            border: string;
        };
        warning: {
            border: string;
        };
        primary: {
            border: string;
        };
        secondary: {
            border: string;
        };
        collab: {
            border: string;
        };
        ai: {
            border: string;
        };
    };
    orientation: {
        horizontal: {
            root: string;
            border: string;
            container: string;
        };
        vertical: {
            root: string;
            border: string;
            container: string;
        };
    };
    size: {
        xs: string;
        sm: string;
        md: string;
        lg: string;
        xl: string;
    };
    type: {
        solid: {
            border: string;
        };
        dashed: {
            border: string;
        };
        dotted: {
            border: string;
        };
    };
}, {
    root: string;
    border: string;
    container: string;
    icon: string;
    avatar: string;
    avatarSize: string;
    label: string;
}, undefined, {
    color: {
        default: {
            border: string;
        };
        danger: {
            border: string;
        };
        success: {
            border: string;
        };
        warning: {
            border: string;
        };
        primary: {
            border: string;
        };
        secondary: {
            border: string;
        };
        collab: {
            border: string;
        };
        ai: {
            border: string;
        };
    };
    orientation: {
        horizontal: {
            root: string;
            border: string;
            container: string;
        };
        vertical: {
            root: string;
            border: string;
            container: string;
        };
    };
    size: {
        xs: string;
        sm: string;
        md: string;
        lg: string;
        xl: string;
    };
    type: {
        solid: {
            border: string;
        };
        dashed: {
            border: string;
        };
        dotted: {
            border: string;
        };
    };
}, {
    root: string;
    border: string;
    container: string;
    icon: string;
    avatar: string;
    avatarSize: string;
    label: string;
}, import("tailwind-variants").TVReturnType<{
    color: {
        default: {
            border: string;
        };
        danger: {
            border: string;
        };
        success: {
            border: string;
        };
        warning: {
            border: string;
        };
        primary: {
            border: string;
        };
        secondary: {
            border: string;
        };
        collab: {
            border: string;
        };
        ai: {
            border: string;
        };
    };
    orientation: {
        horizontal: {
            root: string;
            border: string;
            container: string;
        };
        vertical: {
            root: string;
            border: string;
            container: string;
        };
    };
    size: {
        xs: string;
        sm: string;
        md: string;
        lg: string;
        xl: string;
    };
    type: {
        solid: {
            border: string;
        };
        dashed: {
            border: string;
        };
        dotted: {
            border: string;
        };
    };
}, {
    root: string;
    border: string;
    container: string;
    icon: string;
    avatar: string;
    avatarSize: string;
    label: string;
}, undefined, {
    color: {
        default: {
            border: string;
        };
        danger: {
            border: string;
        };
        success: {
            border: string;
        };
        warning: {
            border: string;
        };
        primary: {
            border: string;
        };
        secondary: {
            border: string;
        };
        collab: {
            border: string;
        };
        ai: {
            border: string;
        };
    };
    orientation: {
        horizontal: {
            root: string;
            border: string;
            container: string;
        };
        vertical: {
            root: string;
            border: string;
            container: string;
        };
    };
    size: {
        xs: string;
        sm: string;
        md: string;
        lg: string;
        xl: string;
    };
    type: {
        solid: {
            border: string;
        };
        dashed: {
            border: string;
        };
        dotted: {
            border: string;
        };
    };
}, {
    root: string;
    border: string;
    container: string;
    icon: string;
    avatar: string;
    avatarSize: string;
    label: string;
}, import("tailwind-variants").TVReturnType<{
    color: {
        default: {
            border: string;
        };
        danger: {
            border: string;
        };
        success: {
            border: string;
        };
        warning: {
            border: string;
        };
        primary: {
            border: string;
        };
        secondary: {
            border: string;
        };
        collab: {
            border: string;
        };
        ai: {
            border: string;
        };
    };
    orientation: {
        horizontal: {
            root: string;
            border: string;
            container: string;
        };
        vertical: {
            root: string;
            border: string;
            container: string;
        };
    };
    size: {
        xs: string;
        sm: string;
        md: string;
        lg: string;
        xl: string;
    };
    type: {
        solid: {
            border: string;
        };
        dashed: {
            border: string;
        };
        dotted: {
            border: string;
        };
    };
}, {
    root: string;
    border: string;
    container: string;
    icon: string;
    avatar: string;
    avatarSize: string;
    label: string;
}, undefined, unknown, unknown, undefined>>>;
type SeparatorVariants = VariantProps<typeof separator>;
export interface SeparatorProps extends Pick<_SeparatorProps, 'decorative'> {
    /**
     * The element or component this component should render as.
     * @defaultValue 'div'
     */
    as?: any;
    /** Display a label in the middle. */
    label?: string;
    /**
     * Display an icon in the middle
     * @IconComponent
     */
    icon?: IconComponent;
    /**
     * Display an avatar in the middle
     */
    avatar?: AvatarProps;
    /**
     * @defaultValue 'default'
     */
    color?: SeparatorVariants['color'];
    /**
     * @defaultValue 'xs'
     */
    size?: SeparatorVariants['size'];
    /**
     * @defaultValue 'solid'
     */
    type?: SeparatorVariants['type'];
    /**
     * The orientation of the separator.
     * @defaultValue 'horizontal'
     */
    orientation?: _SeparatorProps['orientation'];
    class?: any;
    b24ui?: Partial<typeof separator.slots>;
}
export interface SeparatorSlots {
    default(props?: {}): any;
}
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<SeparatorProps>, {
    orientation: string;
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<SeparatorProps>, {
    orientation: string;
}>>> & Readonly<{}>, {
    orientation: "horizontal" | "vertical";
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Readonly<SeparatorSlots> & SeparatorSlots>;
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];
} & {};
