import { getInfo } from './operations/getInfo.methods';
import { postUsage } from './operations/postUsage.methods';
/**
 * All operations available for the vpn resource
 */
export declare const vpnOperations: {
    getInfo: typeof getInfo;
    postUsage: typeof postUsage;
};
/**
 * Check if a vpn operation exists
 *
 * @param operation Operation name to check
 * @returns boolean indicating if the operation exists
 */
export declare function hasVpnOperation(operation: string): boolean;
