import React from 'react'; import { Schema } from '../../types'; interface Props { name: string; schema?: Schema; description?: React.ReactNode; exampleTitle?: string; hideTitle?: boolean; toggle?: boolean; toggleExpand?: boolean; examples?: object[]; } export declare const SchemaComponent: React.FunctionComponent; export {};