type DirectionType = "rtl" | "ltr";
type PositionType = "top" | "bottom" | "right" | "left";
type RadioOptionType = {
    label: string;
    value: string;
};

export type { DirectionType as D, PositionType as P, RadioOptionType as R };
