UNPKG

321 BTypeScriptView Raw
1import React from 'react';
2import type { FC, ReactNode } from 'react';
3import { NativeProps } from '../../utils/native-props';
4declare type Props = {
5 onClick?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
6 children?: ReactNode;
7} & NativeProps;
8export declare const SwiperItem: FC<Props>;
9export {};