import type { FontAttributes, UIKitTypography } from '../types'; export type UIKitTypographyOverrides = Partial & { shared?: Partial; }; declare const createTypography: (overrides?: UIKitTypographyOverrides, scaleFactor?: (dp: number) => number) => UIKitTypography; export default createTypography;