import type { ConfigurationForm } from "../../types"; export interface WidgetProviderProps { preference: string; handler?: string; [key: string]: unknown; } export interface WidgetContextType { stateWidget: boolean; handleOpenWidget: () => void; handleCloseWidget: () => void; handler?: string; config: ConfigurationForm; preference: string; }