import { IndicatorProps, ItemProps, CarouselProps } from './carousel.types.js'; import '@zag-js/core'; import '@zag-js/types'; declare const props: (keyof CarouselProps)[]; declare const splitProps: >(props: Props) => [Partial, Omit]; declare const indicatorProps: (keyof IndicatorProps)[]; declare const splitIndicatorProps: (props: Props) => [IndicatorProps, Omit]; declare const itemProps: (keyof ItemProps)[]; declare const splitItemProps: (props: Props) => [ItemProps, Omit]; export { indicatorProps, itemProps, props, splitIndicatorProps, splitItemProps, splitProps };