///
import * as React from "react";
import * as styles from "./style/group.css";
export declare type GroupComponentStyle = Partial;
export interface GroupComponentProps {
canShowMore: boolean;
classNames?: GroupComponentStyle;
count: number;
groupKey: string;
groupLabel: string;
showAllHandler?: (groupKey: string) => void;
showMoreHandler: () => void;
children?: React.ClassicElement[];
}
export declare const GroupComponent: React.ComponentClass;