export declare class NotFoundError extends Error { constructor(message: string); } export declare class FetchError extends Error { constructor(message: string); } export declare class ConfigError extends Error { constructor(message: string); } export declare class EndpointError extends Error { constructor(message: string); } export declare class FrameworkError extends Error { constructor(message: string); } /** * Logs a warning in the console in dev mode * * @example warn("You should do/change something.") * * @param message - The message that describes the warning. */ export declare const warn: (message: string) => void;