import React from 'react'; import ReactDOM from 'react-dom/client'; import { StoreType } from './model/store.js'; export declare const PolotnoContainer: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const SidePanelWrap: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const WorkspaceWrap: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const PolotnoApp: ({ store, style, sections, }: { store: StoreType; style?: any; sections?: Array; }) => React.JSX.Element; export declare function createPolotnoApp({ container, key, showCredit, sections }: { container: any; key: any; showCredit: any; sections: any; }): { store: StoreType; root: ReactDOM.Root; destroy: () => void; }; export declare const createDemoApp: typeof createPolotnoApp;