/**
 * Utility function to detect if an error is related to a model not being found
 * across different provider APIs.
 *
 * @param error - The error object from the API call
 * @returns boolean indicating if this is a model not found error
 */
export declare function isModelNotFoundError(error: unknown): boolean;
