/// <reference types="react" />
import { Component, Property, DisplayOptions } from '../types';
export declare const multiLineText: (input?: string | undefined) => string | JSX.Element[] | undefined;
export declare type PropTableProps = DisplayOptions & {
    type?: Component;
    propDefinitions: Property[];
};
declare const PropTable: (props: PropTableProps) => JSX.Element | null;
export default PropTable;
