import { StyleOptions } from '../../types'; export interface FontFamilyProps { /** * The **`font-family`** CSS property specifies a prioritized list of one or more font family names and/or generic family names for the selected element. * * @see https://developer.mozilla.org/docs/Web/CSS/font-family */ style$FontFamily: T; } export declare const fontFamily: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;