import { FontSynthesisPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface FontSynthesisProps { /** * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser. * * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis */ style$FontSynthesis: T; } export declare const fontSynthesis: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;