import { ScrollSnapStopPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ScrollSnapStopProps { /** * The **`scroll-snap-stop`** CSS property defines whether the scroll container is allowed to "pass over" possible snap positions. * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop */ style$ScrollSnapStop: T; } export declare const scrollSnapStop: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;