import { OrmGenerics } from "../types/ormGenerics"; import { iRest } from "../types/ormInterfaces"; type WithGetMethod> = Omit & { RequestMethod: "GET"; }; export declare function readOnlyRestOrm>(configFn: () => Omit, "requestMethod">): { Get: (request: import("../types/ormInterfaces").RequestQueryBody["RequestMethod"], WithGetMethod["RestTableInterface"], WithGetMethod["CustomAndRequiredFields"], WithGetMethod["RequestTableOverrides"]>) => Promise["RequestMethod"], WithGetMethod["RestTableInterface"], {}>>; }; export {};