import { FontWeightProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface FontWeightProps { /** * The **`font-weight`** CSS property sets the weight (or boldness) of the font. The weights available depend on the `font-family` you are using. * * @see https://developer.mozilla.org/docs/Web/CSS/font-weight */ style$FontWeight: T; } export declare const fontWeight: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;