import type { Orientation } from '../../../Types/Orientation'; /** * Represents the `ICarousel2ElementProps` interface. * * @public */ export interface ICarousel2ElementProps { page: number; numVisible: number; numScroll: number; orientation: Orientation; value: Array | null | undefined; circular: boolean; showIndicators: boolean; showNavigators: boolean; autoplayInterval: number; } //# sourceMappingURL=ICarousel2ElementProps.d.ts.map