import type * as CSS from 'csstype'; import type { ResponsiveValue } from './responsiveValue'; export interface customExtraProps { /** * The CSS `animation` property */ animation?: ResponsiveValue; /** * The CSS `appearance` property */ appearance?: ResponsiveValue; /** * The CSS `visibility` property */ visibility?: ResponsiveValue; /** * The CSS `user-select` property */ userSelect?: ResponsiveValue; /** * The CSS `pointer-events` property */ pointerEvents?: ResponsiveValue; /** * The CSS `cursor` property */ cursor?: ResponsiveValue; /** * The CSS `resize` property */ resize?: ResponsiveValue; /** * The CSS `object-fit` property */ objectFit?: ResponsiveValue; /** * The CSS `object-psition` property */ objectPosition?: ResponsiveValue; /** * The CSS `float` property */ float?: ResponsiveValue; /** * The CSS `will-change` property */ willChange?: ResponsiveValue; } export declare const customExtra: import("styled-system").styleFn;