import { Listed } from "./Listed.model"; export declare const actions: { readonly pure: readonly ["aggregate", "count", "findFirst", "findMany", "findUnique", "queryRaw"]; readonly impure: readonly ["create", "createMany", "delete", "deleteMany", "executeRaw", "update", "updateMany", "upsert"]; }; export type PureAction = Listed; export type ImpureAction = Listed; export type Action = PureAction | ImpureAction;