import { getNetworks } from './operations/getNetworks.methods';
import { getNetwork_name } from './operations/getNetwork_name.methods';
import { getBandwidth_usage } from './operations/getBandwidth_usage.methods';
/**
 * All operations available for the network resource
 */
export declare const networkOperations: {
    getNetworks: typeof getNetworks;
    getNetwork_name: typeof getNetwork_name;
    getBandwidth_usage: typeof getBandwidth_usage;
};
/**
 * Check if a network operation exists
 *
 * @param operation Operation name to check
 * @returns boolean indicating if the operation exists
 */
export declare function hasNetworkOperation(operation: string): boolean;
