import React from 'react'; export interface CarouselSwitchProps { prefixCls: string; next: () => void; prev: () => void; isPrevDisabled: boolean; isNextDisabled: boolean; } declare const CarouselSwitch: React.FC; export default CarouselSwitch;