import React from 'react';
import { ICommandBarProps } from '@fluentui/react';
declare type ColumnType = 'add' | 'edit' | 'delete' | 'refresh';
export interface IGroupCommandBarProps extends Partial<ICommandBarProps> {
    visibleColumns?: ColumnType[];
}
declare const GroupCommandBar: React.FC<IGroupCommandBarProps>;
export default GroupCommandBar;
