import React from 'react'; import type { NativeProps } from '@zbanx/mobile-utils'; import type { Country } from './countries'; export interface FlagProps extends NativeProps { size?: number; title?: string; code?: Country; borderColor?: string; } declare const Flag: React.NamedExoticComponent; export default Flag;