import * as CSS from "csstype"; import { Config } from "../utils/prop-config"; import { Token, Length } from "../utils"; export declare const interactivity: Config; export interface InteractivityProps { /** * The CSS `appearance` property */ appearance?: Token; /** * The CSS `user-select` property */ userSelect?: Token; /** * The CSS `pointer-events` property */ pointerEvents?: Token; /** * The CSS `resize` property */ resize?: Token; /** * The CSS `cursor` property */ cursor?: Token; /** * The CSS `outline` property */ outline?: Token>; /** * The CSS `outline-offset` property */ outlineOffset?: Token>; /** * The CSS `outline-color` property */ outlineColor?: Token; }