export interface CountryType {
    code: string;
    label: string;
    phone: string;
    suggested?: boolean;
}
export type DataAttributeKey = `data-${string}`;
export type TranslateFuncType = (key: string, parameters?: Record<string, any> | undefined) => string;
