import { IStyle, ITheme, IStyleFunctionOrObject } from 'office-ui-fabric-react'; export interface IMarkdownTableProps { className?: string; /** Theme provided by higher-order component. */ theme?: ITheme; /** Call to provide customized styling that will layer on top of the variant rules. */ styles?: IStyleFunctionOrObject; } export interface IMarkdownTableCellProps extends IMarkdownTableProps { /** * Render the table cell as a th or td. * @default 'td' */ as?: 'th' | 'td'; } export declare type IMarkdownTableStyleProps = Required> & Pick; export interface IMarkdownTableStyles { root: IStyle; table: IStyle; thead: IStyle; tbody: IStyle; tr: IStyle; td: IStyle; th: IStyle; }