import { FC, ReactType } from 'react'; interface Partner { firstName?: string; lastName?: string; mobilePhone?: string; } interface ServicePackage { id: number; name: string; price: string; currency: string; } interface ServiceCallProps { id: number; milaInternalId: string; trackerUrlSafeId: string; status: string; StatusLink: ReactType; date: string; name: string; totalPrice: number; totalPriceDiscounted: number; currency: string; priceHappines: number; servicePackages: [ServicePackage]; partner: Partner; cancelable: boolean; } export interface ServiceCallsInformationProps { serviceCalls?: [ServiceCallProps]; priceHappinesLabel?: string; serviceNumberLabel?: string; partnerLabel?: string; additionalPriceInfoLabel?: string; recommendedPriceLabel?: string; appointmentLabel?: string; appointmentDeterminedLabel?: string; canceledLabel?: string; cancelButtonLabel?: string; rateUsButtonLabel?: string; handleOnCancel?: (id: any) => void; handleRateUs?: (id: string) => void; } declare const ServiceCallsInformation: FC; export default ServiceCallsInformation;