import { ITheme, IStyle } from '../../Styling'; import { IGroupDividerProps } from './GroupedList.types'; import { IStyleFunctionOrObject } from '../../Utilities'; export interface IGroupShowAllProps extends IGroupDividerProps { /** * Theme provided by Higher Order Component */ theme?: ITheme; /** * 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; } export declare type IGroupShowAllStyleProps = Required>; export interface IGroupShowAllStyles { root: IStyle; }