import { Cosmograph } from '@cosmograph/cosmograph'; import React from 'react'; export interface CosmographReactComponentProps { style?: object; className?: string; } export interface CosmographInstance { remove(): void; setConfig(config: any): void; } type CosmographComponentType = React.ForwardRefExoticComponent; }>; export declare function createCosmographReactComponent(CosmographComponent: new (cosmograph: Cosmograph, container: HTMLElement, config: C) => R): CosmographComponentType; export {};