import { type BgVariant } from '../../utils/bg.js'; export interface CategoriesScrollProps { headline?: string; subheadline?: string; children: React.ReactNode; bg?: BgVariant; className?: string; } export declare function CategoriesScroll({ headline, subheadline, children, bg, className, }: CategoriesScrollProps): import("react/jsx-runtime").JSX.Element;