import { Node } from "../classes"; import { AuthOperations, BaseField, Context } from "../types"; interface Allow { varName: string; parentNode: Node; chainStr?: string; } interface Bind { varName: string; parentNode: Node; chainStr?: string; } declare function createAuthAndParams({ entity, operations, skipRoles, skipIsAuthenticated, allow, context, escapeQuotes, bind, where, }: { entity: Node | BaseField; operations?: AuthOperations | AuthOperations[]; skipRoles?: boolean; skipIsAuthenticated?: boolean; allow?: Allow; context: Context; escapeQuotes?: boolean; bind?: Bind; where?: { varName: string; chainStr?: string; node: Node; }; }): [string, any]; export default createAuthAndParams; //# sourceMappingURL=create-auth-and-params.d.ts.map