import { IsolationPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface IsolationProps { /** * The **`isolation`** CSS property determines whether an element must create a new stacking context. * * @see https://developer.mozilla.org/docs/Web/CSS/isolation */ style$Isolation: T; } export declare const isolation: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;