import type { clutch as IClutch } from "@clutch-sh/api"; import type { ClutchError } from "../Network/errors"; declare const fetchResourceSchemas: (type: string) => Promise; export interface ResolutionResults { results: object[]; failures: { message: string; }[]; } declare const resolveResource: (type: string, limit: number, fields: { [key: string]: any; }, onResolve: (resultObjects: any[], failureMessages: string[]) => void, onError: (message: ClutchError) => void, apiPackage?: any) => Promise; export { fetchResourceSchemas, resolveResource }; //# sourceMappingURL=fetch.d.ts.map