import { getHealth } from './operations/getHealth.methods';
import { getKeyCache } from './operations/getKeyCache.methods';
import { getRoamCache } from './operations/getRoamCache.methods';
import { getSyncedApList } from './operations/getSyncedApList.methods';
import { getKeyHash } from './operations/getKeyHash.methods';
import { getClientRoamHistory } from './operations/getClientRoamHistory.methods';
/**
 * Operations available in the keymanagement domain
 */
export declare const keymanagementOperations: {
    health: {
        getHealth: typeof getHealth;
    };
    keycache: {
        getKeyCache: typeof getKeyCache;
    };
    roamcache: {
        getRoamCache: typeof getRoamCache;
    };
    syncedaplist: {
        getSyncedApList: typeof getSyncedApList;
    };
    keyhash: {
        getKeyHash: typeof getKeyHash;
    };
    clientroamhistory: {
        getClientRoamHistory: typeof getClientRoamHistory;
    };
};
