import { BackfaceVisibilityPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface BackfaceVisibilityProps { /** * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user. * * @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility */ style$BackfaceVisibility: T; } export declare const backfaceVisibility: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;