import { IStyleFunctionOrObject } from 'office-ui-fabric-react/lib/Utilities'; import { ITheme, IStyle } from 'office-ui-fabric-react/lib/Styling'; export interface IEditSectionProps { /** Optional className for the root element. */ className?: string; /** * The name of the component */ title?: string; /** * The section name this button is used to edit. */ section: string; /** * Link to edit the markdown page on GitHub. */ url: string; /** Theme provided by higher-order component. */ theme?: ITheme; /** Optional override styles */ styles?: IStyleFunctionOrObject; } export declare type IEditSectionStyleProps = Pick; export interface IEditSectionStyles { root: IStyle; subComponentStyles: IEditSectionSubComponentStyles; } export interface IEditSectionSubComponentStyles { button: IStyleFunctionOrObject; }