import * as React from "react"; import { GenericPluginProposal as Entity, IGenericPluginProposalState as Data } from "@daostack/arc.js"; import { ArcConfig as ProtocolConfig, Component, ComponentLogs, ComponentProps } from "../../../"; interface RequiredProps extends ComponentProps { id?: string | Entity; } interface InferredProps extends RequiredProps { config: ProtocolConfig; id: string | Entity; } declare class InferredGenericPluginProposal extends Component { protected createEntity(): Entity; static get Entity(): (props: import("../../../runtime/ContextFeed").Props) => JSX.Element; static get Data(): (props: import("../../../runtime/ContextFeed").Props) => JSX.Element; static get Logs(): (props: import("../../../runtime/ContextFeed").Props) => JSX.Element; static EntityContext: React.Context; static DataContext: React.Context; static LogsContext: React.Context; } declare function useGenericPluginProposal(): [Data | undefined, Entity | undefined]; declare class GenericPluginProposal extends React.Component { render(): JSX.Element; static get Entity(): (props: import("../../../runtime/ContextFeed").Props) => JSX.Element; static get Data(): (props: import("../../../runtime/ContextFeed").Props) => JSX.Element; static get Logs(): (props: import("../../../runtime/ContextFeed").Props) => JSX.Element; } export default GenericPluginProposal; export { InferredGenericPluginProposal, GenericPluginProposal, Entity as GenericPluginProposalEntity, Data as GenericPluginProposalData, useGenericPluginProposal, };