export type APIOptions = { dryRun?: boolean; signal?: AbortSignal; parseJSON?: boolean; headers?: Record; }; export type APIError = { error: { code: string; message: string; }; }; export type APIState = { /** If API will successfully call */ apiAvailable: boolean; /** The available API functions */ api: T; }; //# sourceMappingURL=types.d.ts.map