export declare class CLIError extends Error { status?: number | undefined; constructor(message: string, status?: number | undefined); } /** Authenticated fetch against the Long Tail API */ export declare function apiFetch(path: string, options?: RequestInit): Promise;