import { FontStyleProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface FontStyleProps { /** * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`. * * @see https://developer.mozilla.org/docs/Web/CSS/font-style */ style$FontStyle: T; } export declare const fontStyle: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;