import * as React from "react"; import { Reputation as Entity, IReputationState as Data } from "@daostack/arc.js"; import { ArcConfig as ProtocolConfig, Component, ComponentLogs, ComponentProps } from "../"; interface RequiredProps extends ComponentProps { address?: string; } interface InferredProps extends RequiredProps { config: ProtocolConfig | undefined; } declare class InferredReputation 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 useReputation(): [Data | undefined, Entity | undefined]; declare class Reputation 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 Reputation; export { Reputation, InferredReputation, Entity as ReputationEntity, Data as ReputationData, useReputation, };