import * as React from 'react'; import '../styles.scss'; import { Theme } from '../Models/Theme/Theme'; import { TextContent } from '../Text/TextContent'; export type WorkingStepProps = { theme?: Theme; children?: JSX.Element; textContent: TextContent; content: string; }; declare const WorkingStep: React.FC; export default WorkingStep;