import React from 'react'; export interface GuideProps { allowClose?: boolean; className?: string; counter?: boolean; keyboardControl?: boolean; mask?: boolean; mode?: string; onClose?: () => void; steps?: any[]; style?: React.CSSProperties; visible?: boolean; prefixCls?: string; doneBtnText?: string; prevBtnText?: string; nextBtnText?: string; skipBtnText?: string; } declare const Guide: { (props: GuideProps): JSX.Element; propTypes: { prefixCls: any; className: any; style: any; mode: any; steps: any; visible: any; counter: any; mask: any; allowClose: any; keyboardControl: any; onClose: any; doneBtnText: any; prevBtnText: any; nextBtnText: any; skipBtnText: any; }; defaultProps: { prefixCls: string; mode: string; allowClose: boolean; keyboardControl: boolean; visible: boolean; counter: boolean; mask: boolean; steps: any[]; }; }; export default Guide;