import { type SkFont } from "@shopify/react-native-skia"; import type { FontConfig } from "../types"; /** * Resolves Skia text for charts: optional bundled `typeface` via `useFont`, otherwise * `matchFont` with optional custom `fontManager`. System-font matches are cached * module-wide, so many charts sharing a family/size/weight resolve it once. * Custom-manager matches are reused while the manager and resolved inputs stay * unchanged, even if the caller passes a new font config object each render. */ export declare function useChartSkiaFont(fontProp: FontConfig | undefined, defaultFamily: string, defaultSize: number): SkFont; //# sourceMappingURL=useChartSkiaFont.d.ts.map