import { getInfrastructureAttacks } from './operations/getInfrastructureAttacks.methods';
import { getClientAttacks } from './operations/getClientAttacks.methods';
import { getWidsEvents } from './operations/getWidsEvents.methods';
/**
 * All operations available for the wids resource
 */
export declare const widsOperations: {
    getInfrastructureAttacks: typeof getInfrastructureAttacks;
    getClientAttacks: typeof getClientAttacks;
    getWidsEvents: typeof getWidsEvents;
};
/**
 * Check if a wids operation exists
 *
 * @param operation Operation name to check
 * @returns boolean indicating if the operation exists
 */
export declare function hasWidsOperation(operation: string): boolean;
