import { TouchActionPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TouchActionProps { /** * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser). * * @see https://developer.mozilla.org/docs/Web/CSS/touch-action */ style$TouchAction: T; } export declare const touchAction: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;