import React from 'react'; import { IOptions } from './options'; /** * @param canvasProps Attributes passed to the underlying canvas element * @param children Tags rendered using the provided renderers * @param containerProps Attributes passed to the root div element * @param id Should be provided when using SSR * @param options https://www.goat1000.com/tagcanvas-options.php */ export declare type ICloud = { canvasProps?: React.HTMLAttributes; children: React.ReactFragment; containerProps?: React.HTMLAttributes; id?: string | number; options?: IOptions; };