import type { AsChildTypes } from "../types"; import { type PropsOf } from "@qwik.dev/core"; export type CarouselItemProps = PropsOf<"div"> & { /** The value for this carousel item. Defaults to string index if not provided. */ value?: string; }; export declare const CarouselItem: import("@qwik.dev/core").Component;