import * as React from 'react'; import { ITheme } from 'office-ui-fabric-react/lib/Styling'; import { IStyleFunctionOrObject } from 'office-ui-fabric-react/lib/Utilities'; import { IInterfaceProperty, IEnumProperty } from '../../utilities/parser/index'; import { IPropertiesTableSetStyleProps, IPropertiesTableSetStyles } from './PropertiesTableSet.types'; export interface IPropertiesTableProps { title?: string; properties: IInterfaceProperty[] | IEnumProperty[]; renderAsEnum?: boolean; key?: string; /** Theme provided by higher-order component. */ theme?: ITheme; /** Optional override styles */ styles?: IStyleFunctionOrObject; } export declare const PropertiesTable: React.FunctionComponent;