type DirectionType = "rtl" | "ltr";
type RadioOptionType = {
    label: string;
    value: string;
};

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