import { GetApiKeyResponse } from "@server/routers/apiKeys"; import { createContext } from "react"; interface ApiKeyContextType { apiKey: GetApiKeyResponse; updateApiKey: (updatedApiKey: Partial) => void; } const ApiKeyContext = createContext(undefined); export default ApiKeyContext;