import * as CSS from "csstype"; import { PropConfig } from "../core"; import { Length, ResponsiveValue } from "../utils"; export interface OtherProps { /** * 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; /** * The CSS `filter` property */ filter?: ResponsiveValue; } export declare const others: import("../core").Parser; export declare const othersParser: { (props: Record): Record; config: PropConfig; propNames: string[]; cache: Map; };