import { IStyle } from '../../Styling'; import { IGroupDividerProps } from './GroupedList.types'; import { IStyleFunctionOrObject } from '../../Utilities'; /** * {@docCategory GroupedList} */ export interface IGroupShowAllProps extends IGroupDividerProps { /** * Style function to be passed in to override the themed or default styles */ styles?: IStyleFunctionOrObject; /** * The Show All link text. * @defaultvalue 'Show All' */ showAllLinkText?: string; } /** * {@docCategory GroupedList} */ export declare type IGroupShowAllStyleProps = Required>; /** * {@docCategory GroupedList} */ export interface IGroupShowAllStyles { root: IStyle; }