/// import { StyleProp, ViewStyle } from 'react-native'; import { CountryCode } from './types'; export interface FlagButtonProps { withEmoji?: boolean; withCountryNameButton?: boolean; withCurrencyButton?: boolean; withCallingCodeButton?: boolean; withFlagButton?: boolean; containerButtonStyle?: StyleProp; countryCode?: CountryCode; placeholder: string; onOpen?(): void; } export declare const FlagButton: { ({ withEmoji, withCountryNameButton, withCallingCodeButton, withCurrencyButton, withFlagButton, countryCode, containerButtonStyle, onOpen, placeholder, }: FlagButtonProps): JSX.Element; defaultProps: { withEmoji: boolean; withCountryNameButton: boolean; withCallingCodeButton: boolean; withCurrencyButton: boolean; withFlagButton: boolean; }; };