export declare const convertPropsToClasses: ({ orientation, size, type, density, }: {
    orientation?: "horizontal" | "vertical";
    size?: "default" | "lg" | "xl" | "2xl";
    type?: "bar" | "button";
    density?: "compact" | "comfortable" | "relaxed";
}) => string;
