/// /// import { Link } from "../link"; import type { UrlObject } from "url"; import type { motion } from "framer-motion"; import type { Grid } from "../grid"; interface Props extends Omit, "columns" | "onChange"> { children: Array; rows: number; columns: number; stepAmount?: number; step?: number; clampStep?: boolean; transition?: React.ComponentProps["transition"]; nextAriaLabel?: string; carouselAriaLabel?: string; previousAriaLabel?: string; navigation?: boolean; header?: { title: string; href: string; linkProps?: React.ComponentProps; } | React.ReactElement<{ href: string | UrlObject; children: string; style?: React.CSSProperties; }>; onStepChange?: (currentStep: number) => void; disableDrag?: boolean; className?: string; } export declare const Carousel: import("react").NamedExoticComponent; export declare const CarouselNavContainerSelector: string; export {}; //# sourceMappingURL=index.d.ts.map