import { ScrollBehaviorPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ScrollBehaviorProps { /** * The **`scroll-behavior`** CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs. * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-behavior */ style$ScrollBehavior: T; } export declare const scrollBehavior: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;