import * as React from "react"; import { Map } from "immutable"; import { IOWidget } from "./widget"; export interface AllProps { input: i; widgets: IOWidget[]; on_done: (output: o[]) => void; } export interface AllState { outputs: Map; } export declare class All extends React.Component, AllState> { constructor(props: AllProps, context: any); render(): JSX.Element; } export declare let all: (widgets: IOWidget[]) => IOWidget;