export declare const convertPropsToClasses: ({ color, orientation, position, responsive, }: {
    color?: "primary" | "secondary" | "tertiary" | "high-contrast" | "success" | "warning" | "danger";
    orientation?: "horizontal" | "vertical";
    position?: "center" | "end" | "start";
    responsive?: boolean;
}) => string;
