export declare const BorderTypes: ["underline", "bordered"]; export declare type BorderType = typeof BorderTypes[number]; declare const TabTypes: ["PROVINCE", "CITY", "DISTRICT"]; export declare type TabType = typeof TabTypes[number]; export interface Country { code: number | string; name: string; } export interface Region { code: string; name: string; group?: string; children?: Region[]; } export declare type RegionArray = Array; export interface RegionValue { countryCode?: string | number; countryName?: string; provinceCode?: string | number; provinceName?: string; cityCode?: string | number; cityName?: string; districtCode?: string | number; districtName?: string; } export {};