import React, { PropsWithChildren } from "react"; import type { Client } from "@connect2ic/core"; declare const Connect2ICContext: React.Context<{ client: Client; dialog: { open: () => void; close: () => void; isOpen: boolean; }; }>; declare type Props = { client: Client; }; declare const Connect2ICProvider: React.FC>; export { Connect2ICProvider, Connect2ICContext };