import { FunctionComponent } from 'react'; import { BillingAddress, Country } from '@mangopay/checkout-sdk-elements-core'; import { FieldsSet } from '../../common/form'; export interface BillingAddressFormProps { billingAddress?: BillingAddress; disabled?: boolean; countries: Country[]; onChange?: (fieldsSet: FieldsSet) => void; } export declare const BillingAddressForm: FunctionComponent;