import { StyleOptions } from '../../types'; export interface ContentProps { /** * The **`content`** CSS property replaces an element with a generated value. Objects inserted using the `content` property are _anonymous replaced elements._ * * @see https://developer.mozilla.org/docs/Web/CSS/content */ style$Content: T; } export declare const content: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;