import { StyleOptions } from '../../types'; export interface FontProps { /** * The **`font`** CSS property is a shorthand for `font-style`, `font-variant`, `font-weight`, `font-stretch`, `font-size`, `line-height`, and `font-family`. Alternatively, it sets an element's font to a system font. * * @see https://developer.mozilla.org/docs/Web/CSS/font */ style$Font: T; } export declare const font: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;