import { Plugin } from 'graphql-yoga';
import { RustJWT } from 'rusty-jwt';
interface AuthPluginOptions {
    aTs: RustJWT;
}
declare const useAuth: ({ aTs }: AuthPluginOptions) => Plugin;
export default useAuth;
