import { getRogueApList } from './operations/getRogueApList.methods';
import { getInterferingApList } from './operations/getInterferingApList.methods';
import { getSuspectApList } from './operations/getSuspectApList.methods';
import { getNeighborApList } from './operations/getNeighborApList.methods';
import { getManuallyContainedApList } from './operations/getManuallyContainedApList.methods';
/**
 * All operations available for the rogues resource
 */
export declare const roguesOperations: {
    getRogueApList: typeof getRogueApList;
    getInterferingApList: typeof getInterferingApList;
    getSuspectApList: typeof getSuspectApList;
    getNeighborApList: typeof getNeighborApList;
    getManuallyContainedApList: typeof getManuallyContainedApList;
};
/**
 * Check if a rogues operation exists
 *
 * @param operation Operation name to check
 * @returns boolean indicating if the operation exists
 */
export declare function hasRoguesOperation(operation: string): boolean;
