import { BillPaymentRefundStatus, BillPaymentStatus, BillStatus, ZeniDate } from '@zeniai/client-epic-state'; export interface Props { approvedDate?: ZeniDate; createDate?: ZeniDate; isBillUploaded?: boolean; isFrozen?: boolean; paymentDate?: ZeniDate; progressSectionObj?: BillPaymentStatus | BillStatus | BillPaymentRefundStatus; scheduleDate?: ZeniDate; totalSections?: number; } declare function VerticalProgressBarSection({ progressSectionObj, isBillUploaded, createDate, scheduleDate, paymentDate, approvedDate, totalSections, isFrozen, }: Props): import("react/jsx-runtime").JSX.Element; export declare const VerticalProgressBarSectionMemo: import('react').MemoExoticComponent; export {};