import { StyleOptions } from '../../types'; export interface OpacityProps { /** * The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency. * * @see https://developer.mozilla.org/docs/Web/CSS/opacity */ style$Opacity: T; } export declare const opacity: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;