import React from 'react'; import { DatePropertyValue, DateRangePropertyValue } from './dates'; import { IdPropertyValue } from './ids'; import { CustomerPropertyValue } from './customer'; import { ProductPropertyValue } from './product'; import { PricePropertyValue } from './price'; import { ImagePropertyValue } from './image'; import { ChargePropertyValue } from './charge'; import { InvoicePropertyValue } from './invoice'; import { PayoutPropertyValue } from './payout'; export declare const PropertyValue: typeof PropertyValueRoot & { Date: typeof DatePropertyValue; DateRange: typeof DateRangePropertyValue; Id: typeof IdPropertyValue; Customer: typeof CustomerPropertyValue; Product: typeof ProductPropertyValue; Price: typeof PricePropertyValue; Image: typeof ImagePropertyValue; Charge: typeof ChargePropertyValue; Invoice: typeof InvoicePropertyValue; Payout: typeof PayoutPropertyValue; }; export declare type TextPropertyValueProps = { children: React.ReactNode; className?: string; multiline?: boolean; ch?: number; words?: number; }; export declare function PropertyValueRoot({ children, multiline, ch, words, className }: TextPropertyValueProps): JSX.Element;