import * as React from 'react'; import { IConnectProps } from './Connect'; declare const Factory: (integrationId: string) => { withInvoke: (functionName: string) => (WrappedComponent: React.ComponentType>) => { new (props: {}): { context: import("./bearer-provider").IBearerContextValue; invoke: (params?: any) => Promise; render(): JSX.Element; setState(state: import("./withInvoke").IState | ((prevState: Readonly>, props: Readonly>) => import("./withInvoke").IState | Pick, K> | null) | Pick, K> | null, callback?: (() => void) | undefined): void; forceUpdate(callBack?: (() => void) | undefined): void; readonly props: Readonly<{ children?: React.ReactNode; }> & Readonly>; state: Readonly>; refs: { [key: string]: React.ReactInstance; }; }; displayName: string; contextType: React.Context; }; Connect: (props: Pick) => JSX.Element; }; export default Factory;