export type Country = {
    title: string;
    dialCode: string;
    mask: string;
    flag: string;
};
export declare const countries: Country[];
