@open-chat/chat-bubble
Version:
Chat bubble component.
11 lines (10 loc) • 341 B
TypeScript
import { AxiosInstance } from "axios";
import { ReactNode } from "react";
interface AxiosInstanceProps {
axiosInstance: AxiosInstance;
}
export declare function AxiosProvider({ children }: {
children: ReactNode;
}): import("react/jsx-runtime").JSX.Element;
export declare const useAxiosInstance: () => AxiosInstanceProps;
export {};