import React, { FC } from 'react'; interface PageProps { onRightClick?: () => void; onLeftClick?: () => void; styleClassName?: string; rightBtLabel?: string; leftBtLabel?: string; children?: React.ReactNode; isShowInterval?: boolean; leftBtStyle?: string; rightBtStyle?: string; } /** * 底部按钮组件 */ declare const FooterButton: FC; export default FooterButton;