export declare type Countries = Record; export declare type CountryCodes = Array; export declare type CustomLabels = Record; export declare type CustomLabel = { primary: string; secondary?: string; }; export declare type OnSelect = (countryCode: string) => void;