import { GroupSortColumn, ScopeTypes } from "@omnia/fx-models";
import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
export declare class GroupManagementQuery {
    searchText?: string;
    groupTypeId?: GuidValue;
    providerId?: GuidValue;
    pageNumber?: number;
    pageSize?: number;
    sortColumn?: GroupSortColumn;
    sortDesc?: boolean;
    scope?: string[];
    scopeType?: ScopeTypes;
    constructor(searchText?: string, groupTypeId?: GuidValue, providerId?: GuidValue, pageNumber?: number, pageSize?: number, sortColumn?: GroupSortColumn, sortDesc?: boolean, scope?: string[], scopeType?: ScopeTypes);
}
