import { getWirelessClients, getWiredClients, getUnifiedClients } from './operations/getClients.methods';
import { getDetail } from './operations/getDetail.methods';
import { getWirelessClientDetails, getWiredClientDetails } from './operations/getClient.methods';
import { getMobility } from './operations/getMobility.methods';
import { getUsage } from './operations/getUsage.methods';
import { getTopn } from './operations/getTopn.methods';
import { getCount } from './operations/getCount.methods';
/**
 * All operations available for the client resource
 */
export declare const clientOperations: {
    getWirelessClients: typeof getWirelessClients;
    getWiredClients: typeof getWiredClients;
    getUnifiedClients: typeof getUnifiedClients;
    getDetail: typeof getDetail;
    getWirelessClientDetails: typeof getWirelessClientDetails;
    getWiredClientDetails: typeof getWiredClientDetails;
    getMobility: typeof getMobility;
    getUsage: typeof getUsage;
    getTopn: typeof getTopn;
    getCount: typeof getCount;
};
/**
 * Check if a client operation exists
 *
 * @param operation Operation name to check
 * @returns boolean indicating if the operation exists
 */
export declare function hasClientOperation(operation: string): boolean;
