import { TrimType } from "./prompt"; export declare const trim: (str: string, trimType: TrimType) => string; export declare function getHttpErrorMessage(statusCode: number): string; export declare class PromptError extends Error { status: number; error: Error; constructor(message: string, error: any); }