import {Context, createContext, Dispatch, SetStateAction} from "react"; export interface AIUsageContextProps { totalCredits: number; totalPrice: number; setTotalCredits: Dispatch>; setTotalPrice: Dispatch>; } export const AIUsageContext: Context = createContext({ totalCredits: 0, totalPrice: 0, setTotalCredits: (): void => { }, setTotalPrice: (): void => { } })