import { Context } from "../types"; declare function createAuthParam({ context }: { context: Context; }): { isAuthenticated: boolean; roles?: string[] | undefined; jwt: any; }; export default createAuthParam; //# sourceMappingURL=create-auth-param.d.ts.map