export declare const paramsUsers: {
    mandatory: {
        page: number;
        page_size: 10;
        only_is_active: boolean;
        tags: unknown[];
    };
    optional: {
        order: string;
        search: string;
    };
};
