export declare const COUNTRY_CODE: {
    readonly CL: "cl";
    readonly BR: "br";
    readonly CO: "co";
    readonly INTERNATIONAL: "international";
};
export type CountryCode = (typeof COUNTRY_CODE)[keyof typeof COUNTRY_CODE];
