import { StyleOptions } from '../../types'; export interface WillChangeProps { /** * The **`will-change`** CSS property hints to browsers how an element is expected to change. Browsers may set up optimizations before an element is actually changed. These kinds of optimizations can increase the responsiveness of a page by doing potentially expensive work before they are actually required. * * @see https://developer.mozilla.org/docs/Web/CSS/will-change */ style$WillChange: T; } export declare const willChange: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;