type DirectionType = "rtl" | "ltr";
type PositionType = "top" | "bottom" | "right" | "left";
type SeverityType = "info" | "warning" | "error" | "success" | "none";
type OrientationType = "vertical" | "horizontal";
type RadiusType = "full" | "inherit" | "none";
type RadioOptionType = {
    label: string;
    value: string;
};

export type { DirectionType as D, OrientationType as O, PositionType as P, RadiusType as R, SeverityType as S, RadioOptionType as a };
