import { getTopn } from './operations/getTopn.methods';
import { getSwarms } from './operations/getSwarms.methods';
import { getSwarm } from './operations/getSwarm.methods';
/**
 * All operations available for the swarm resource
 */
export declare const swarmOperations: {
    getTopn: typeof getTopn;
    getSwarms: typeof getSwarms;
    getSwarm: typeof getSwarm;
};
/**
 * Check if a swarm operation exists
 *
 * @param operation Operation name to check
 * @returns boolean indicating if the operation exists
 */
export declare function hasSwarmOperation(operation: string): boolean;
