import { IDefaultParams, IError } from "../../types";
import { GroupsHistoryResponse } from "../../types/v2/groups_history";
type Response = GroupsHistoryResponse & IError;
export declare const groups_history: (params: {
    user?: string | number;
    group?: 'gmt' | 'nat' | 'dev' | 'alumni' | 'support' | 'bng' | 'loved' | 'bng_limited';
    sort?: 'id_desc' | 'id_asc';
    max_date?: string;
    min_date?: string;
}, addons?: IDefaultParams) => Promise<Response>;
export {};
