/**
 * Error thrown when a fetch request fails
 *
 * @public exported from `@promptbook/core`
 */
export declare class PromptbookFetchError extends Error {
    readonly name = "PromptbookFetchError";
    constructor(message: string);
}
