import { LLFonts } from './font'; import { LLTheme } from './theme'; export type LLComponentStyleFn = (arg: { theme: LLTheme; fonts: LLFonts; }) => TStyles; export type ComponentStyleProp = { styles?: Partial; }; export type createStylesArg = { componentStyles: TStyles; stylesProp?: Partial; };