import { IStyle, ITheme } from '../../Styling'; import { IStyleFunctionOrObject } from '../../Utilities'; export interface IGroupSpacerProps { /** * Theme from Higher Order Component */ theme?: ITheme; /** * Style function to be passed in to override the themed or default styles */ styles?: IStyleFunctionOrObject; /** Count of spacer(s) */ count: number; /** How much to indent */ indentWidth?: number; } export declare type IGroupSpacerStyleProps = Required>; export interface IGroupSpacerStyles { root: IStyle; }