import { type StateProp } from '@innet/dom'; import { type FlexProps } from '../../layout'; export type Slide = FlexProps; export interface SlidesProps extends Omit { slides: Slide[]; value?: StateProp; slideProps?: Slide; onchange?: (value: number) => void; } export declare function Slides({ slides, vertical, value, onchange, ref, onscroll, slideProps, ...props }: SlidesProps): Generator;