import type { UIContextProps } from "./UIContext"; /** * Creates instances of UIContextProps. */ export interface UIContextFactory { /** * Creates a new UI context. */ createUIContext(): UIContextProps; }