import React from "react"; import { CustomerSocketActionsType, CustomerSocketStateSelectorType } from "./hooks"; declare type MapCustomerSocketActionsType = (actions: CustomerSocketActionsType) => any; export declare const withCustomerSocket: (mapSocketStateToProps?: CustomerSocketStateSelectorType | undefined, mapSocketActionsToProps?: MapCustomerSocketActionsType | undefined) => (BaseComponent: React.Component) => (props: any) => JSX.Element; export {};