import { FunctionComponent } from 'react'; import { Country } from '@mangopay/checkout-sdk-elements-core'; import { ValidationError } from '../../common/form/use-input-field'; export interface BillingAddressCountryProps { value?: string | null; countries: Country[]; disabled?: boolean; onChange?: (value: string, error?: ValidationError) => void; } export declare const BillingAddressCountry: FunctionComponent; export default BillingAddressCountry;