import { IStyleFunctionOrObject } from '../../Utilities'; import { IGroupDividerProps } from './GroupedList.types'; import { IStyle } from '../../Styling'; /** * {@docCategory GroupedList} */ export interface IGroupFooterProps extends IGroupDividerProps { /** * Style function to be passed in to override the themed or default styles */ styles?: IStyleFunctionOrObject; } /** * {@docCategory GroupedList} */ export declare type IGroupFooterStyleProps = Required> & Pick & { /** Whether the footer is collapsed */ isCollapsed?: boolean; }; /** * {@docCategory GroupedList} */ export interface IGroupFooterStyles { root: IStyle; }