import * as React from "react"; import { ref } from "framework-utils"; import ReactGuides from "@scena/react-guides"; import { GuidesOptions } from "@scena/react-guides/declaration/types"; export interface InnerGuidesProps extends GuidesOptions { container?: HTMLElement; } export default class InnerGuides extends React.Component { public state: InnerGuidesProps = {}; public guides: ReactGuides; constructor(props: InnerGuidesProps) { super(props); this.state = this.props; } public render() { return ; } }