/** * Custom error class for font-related errors. * Provides better error tracking and handling throughout the package. */ export declare class FontError extends Error { constructor(message: string); } /** * Throw a FontError with the given message. * This is a convenience function to maintain consistency with next-font's error handling. */ export declare function throwFontError(message: string): never; //# sourceMappingURL=font-error.d.ts.map