import { AllowedValueWithCode, Amount } from '@zeniai/client-epic-state'; /** * Component & its Props */ interface Field { amount: Amount; changeStatus: string; description: string; chargeType?: string; detailDescription?: string; } export interface Props { fields: Field[]; schema: AllowedValueWithCode[]; style?: React.CSSProperties; topSubtext?: string; width?: number; } export declare function MultiLabelWithSubtextAndStaticTextField({ fields, schema, width, style, topSubtext, }: Props): import("react/jsx-runtime").JSX.Element; export {};