import React from 'react'; import type { SwiperProps } from '../types'; interface CornerSwiperProps extends SwiperProps { defaultMargin?: boolean; rotateX?: string; rotateY?: string; position?: number; perspective?: string; perspectiveOriginX?: string; perspectiveOriginY?: string; } declare const CornerSwiper: React.FC; export default CornerSwiper;