/// import { Rating } from '../../@Types/FormStep'; import { StepProps } from '../Step'; export interface RatingStepProps extends StepProps { /** The RatingStep to display */ step: Rating; } declare function RatingStep(props: RatingStepProps): JSX.Element; export default RatingStep;