/** * Get the relative path to a country's flag SVG * @param countryCode - Two-letter ISO 3166-1 alpha-2 country code (uppercase) * @returns Relative path to the flag SVG file */ export declare function getFlagPath(countryCode: string): string; /** * Get the flag filename for a country code * @param countryCode - Two-letter ISO 3166-1 alpha-2 country code * @returns Filename of the flag SVG */ export declare function getFlagFilename(countryCode: string): string; /** * Object mapping country codes to their flag filenames * Use this for dynamic imports or when you need the full mapping */ export declare const flagFilenames: Record; /** * Get all available country codes that have flags */ export declare const availableFlagCodes: string[]; /** * Check if a flag exists for a given country code */ export declare function hasFlagForCountry(countryCode: string): boolean; export type FlagCountryCode = keyof typeof flagFilenames; //# sourceMappingURL=flags.d.ts.map