import { HasDependencies } from "@focuson/focuson";
import { LensProps } from "@focuson/state";
interface ExternalComponentProps<S, C> extends LensProps<S, any, C> {
    id: string;
    nameOfComponentFn: string;
}
export declare function ExternalComponent<S, C extends HasDependencies>({ id, state, nameOfComponentFn }: ExternalComponentProps<S, C>): any;
export {};
