import * as React from 'react'; import { BasePropsType } from '../_internal'; export interface INext extends BasePropsType { stepIndex?: number; stepLen?: number; nextBtnText?: string; customNext?: boolean; showSkip?: boolean; goNext?: () => void; goSkip?: () => void; } declare const Next: React.FC; export default Next;