import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Wizard/wizard'; import { Button, ButtonVariant } from '../../../components/Button'; import { WizardStep } from './Wizard'; export interface WizardFooterInternalProps { onNext: any; onBack: any; onClose: any; isValid: boolean; firstStep: boolean; activeStep: WizardStep; nextButtonText: React.ReactNode; backButtonText: React.ReactNode; cancelButtonText: React.ReactNode; } export const WizardFooterInternal: React.FunctionComponent = ({ onNext, onBack, onClose, isValid, firstStep, activeStep, nextButtonText, backButtonText, cancelButtonText }: WizardFooterInternalProps) => ( ); WizardFooterInternal.displayName = 'WizardFooterInternal';