import type { KeyValueCache, MeshPlugin, YamlConfig } from '@graphql-mesh/types';
export default function useMeshRateLimit({ config, cache, }: YamlConfig.RateLimitPluginConfig & {
    cache: KeyValueCache;
}): MeshPlugin<any>;
