import { hardware_types } from "./utils.js"; import type { EventType, EventListener, PostResponse, UploadResponse, SpaceStatusCallback } from "./types.js"; import type { Config } from "./types.js"; type event = (eventType: K, listener: EventListener) => SubmitReturn; type predict = (endpoint: string | number, data?: unknown[], event_data?: unknown) => Promise; type client_return = { predict: predict; config: Config; submit: (endpoint: string | number, data?: unknown[], event_data?: unknown, trigger_id?: number | null) => SubmitReturn; component_server: (component_id: number, fn_name: string, data: unknown[]) => any; view_api: (c?: Config) => Promise>; }; type SubmitReturn = { on: event; off: event; cancel: () => Promise; destroy: () => void; }; export declare let NodeBlob: any; export declare function duplicate(app_reference: string, options: { hf_token: `hf_${string}`; private?: boolean; status_callback: SpaceStatusCallback; hardware?: (typeof hardware_types)[number]; timeout?: number; }): Promise; interface Client { post_data: (url: string, body: unknown, token?: `hf_${string}`) => Promise<[PostResponse, number]>; upload_files: (root: string, files: File[], token?: `hf_${string}`, upload_id?: string) => Promise; client: (app_reference: string, options: { hf_token?: `hf_${string}`; status_callback?: SpaceStatusCallback; normalise_files?: boolean; }) => Promise; handle_blob: (endpoint: string, data: unknown[], api_info: ApiInfo, token?: `hf_${string}`) => Promise; } export declare function api_factory(fetch_implementation: typeof fetch, EventSource_factory: (url: URL) => EventSource): Client; export declare const post_data: (url: string, body: unknown, token?: `hf_${string}`) => Promise<[PostResponse, number]>, upload_files: (root: string, files: File[], token?: `hf_${string}`, upload_id?: string) => Promise, client: (app_reference: string, options: { hf_token?: `hf_${string}`; status_callback?: SpaceStatusCallback; normalise_files?: boolean; }) => Promise, handle_blob: (endpoint: string, data: unknown[], api_info: ApiInfo, token?: `hf_${string}`) => Promise; interface ApiData { label: string; type: { type: any; description: string; }; component: string; example_input?: any; } interface JsApiData { label: string; type: string; component: string; example_input: any; } interface EndpointInfo { parameters: T[]; returns: T[]; } interface ApiInfo { named_endpoints: { [key: string]: EndpointInfo; }; unnamed_endpoints: { [key: string]: EndpointInfo; }; } export declare function walk_and_store_blobs(param: any, type?: any, path?: any[], root?: boolean, api_info?: any): Promise<{ path: string[]; type: string; blob: Blob | false; }[]>; export {}; //# sourceMappingURL=client.d.ts.map