import type { ValuesOf } from '../../Types/ValuesOf'; /** * `CarouselNavigationPosition` - Defines the position of the navigation controls relative to the carousel content. * * @public */ export declare const CarouselNavigationPosition: { /** * `split` - Navigation buttons are positioned on the left and right edges, split across the carousel boundary (half in, half out). * @default */ readonly Split: "split"; /** * `inside` - Navigation buttons are positioned inside the carousel, overlaying the content. */ readonly Inside: "inside"; /** * `outside` - Navigation buttons are positioned outside the carousel, leaving the content completely unobstructed. */ readonly Outside: "outside"; }; /** * @public */ export type CarouselNavigationPosition = ValuesOf; //# sourceMappingURL=CarouselNavigationPosition.d.ts.map