import { IStyle, ITheme } from '../../Styling'; import { IRefObject, IStyleFunctionOrObject } from '../../Utilities'; export interface IFabricProps extends React.HTMLAttributes { componentRef?: IRefObject<{}>; theme?: ITheme; styles?: IStyleFunctionOrObject; } export interface IFabricStyleProps extends IFabricProps { theme: ITheme; isFocusVisible: boolean; } export interface IFabricStyles { root: IStyle; }