import React from 'react'; import './_style/index.less'; interface baseSliderProps { prefixCls?: string; onClose?: () => any; onSuccess?: (data?: any) => any; show?: boolean; } export declare type SliderProps = baseSliderProps & React.HTMLProps; export interface SliderData { sessionId: string; sig: string; token: string; scene: string; } declare const Slider: React.FC; export default Slider;