import { Company, NewOnboardingCustomerView, ProductInfo, ProductType } from '@zeniai/client-epic-state'; import { FormSectionProps } from '../../../formElements/common/formSection'; import { MultiSelectWithCheckBoxFieldOption } from '../../../formElements/multiSelectWithCheckBoxField/MultiSelectWithCheckBoxField'; export interface CustomerCreationProps extends FormSectionProps { extraLargeLabelWidth: number; isSubsidiary: boolean; labelWidth: number; largeLabelWidth: number; localData: NewOnboardingCustomerView; onboardedCompanies: Company[]; productsAdditionalLabel: string; realmIdAdditionalLabel: string; sectionId: string; } declare const CustomerCreation: import('react').ForwardRefExoticComponent>; export default CustomerCreation; /** * Helpers */ export declare const getProductListAllOptions: (allProductsList: ProductInfo[], selectedProducts: ProductType[]) => MultiSelectWithCheckBoxFieldOption[];