export declare function isNotFoundError(error: unknown): boolean; /** * Extract a human-readable message from any thrown value. * The YNAB SDK throws plain objects (not Error instances) for API errors. */ export declare function extractErrorMessage(error: unknown, fallback?: string): string;