import React, { ComponentType } from "react"; import { ABSmartly } from "../../types"; interface WithABSmartlyProps { absmartly: ABSmartly; } export declare function withABSmartly

(Component: ComponentType

): { (props: Omit): React.JSX.Element; displayName: string; }; export {};