export type Data = {
    key: string;
    value: string;
};
export type Locale = {
    data: Data[];
    locale: string;
    name: string;
};
export type LocalesProps = string | {
    locale?: string;
};
