///
import type { Item } from '../../../types/index.js';
import { CustomerFullInfoProps } from './CustomerFullInfo';
export interface CustomerFullInfoFormProps extends CustomerFullInfoProps {
items: Item[];
isItemsNotValid: boolean;
submitButtonText: string;
onSubmit: () => void;
}
declare function CustomerFullInfoForm({ submitButtonText, onSubmit, customer, country, items, isItemsNotValid, defaultCountry, countries, isCountriesLoading, onCustomerChange, onCountryChange, }: Readonly): import("react").JSX.Element;
declare const _default: import("react").MemoExoticComponent;
export default _default;