import { Content } from './Content';
/** Step */
export interface Step {
    /** Content of the step */
    content: Content[];
    /** Title of the step */
    title: string;
}
//# sourceMappingURL=Step.d.ts.map