export interface AssembledRequestOptions { method: 'GET' | 'POST' | 'PATCH' | 'DELETE'; path: string; apiKey: string; body?: Record; queryParams?: Record; } /** * Make an authenticated request to the Assembled API. */ export declare function makeAssembledRequest(options: AssembledRequestOptions): Promise; //# sourceMappingURL=assembled.utils.d.ts.map