import { ScrollSnapTypePropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ScrollSnapTypeProps { /** * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one. * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type */ style$ScrollSnapType: T; } export declare const scrollSnapType: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;