/** * `@singi-labs/sifa-sdk/flags` -- Self-hosted Twemoji country flag SVGs. * * Shipped so sifa-web's OG image renderer and the planned sifa-app share the * same flag assets without a CDN dependency at render time. Keys are * ISO-3166 alpha-2 lowercase. Values are minified SVG strings. * * Source: Twemoji v14.0.2 (CC-BY 4.0, see NOTICE). */ /** * Return the SVG string for a country code, or `null` if unknown. * Case-insensitive: accepts both `'NL'` and `'nl'`. */ declare function getFlagSvg(cc: string): string | null; /** * Return the sorted, lowercase list of supported ISO-3166 alpha-2 codes. */ declare function listSupportedCountryCodes(): string[]; export { getFlagSvg, listSupportedCountryCodes };