import * as React from 'react'; interface IProps { title: string; version: string; children?: React.ReactNode; toc: any; hasSidebar: boolean; } declare const StyleGuideRenderer: ({ title, version, children, toc, hasSidebar }: IProps) => JSX.Element; export default StyleGuideRenderer;