import { type CSSProperties } from 'react'; import type { WidgetIntegrationProps } from '../internal/types/models/widget-props'; export interface WidgetProps extends WidgetIntegrationProps { className?: string; style?: CSSProperties; rootElement?: HTMLElement | null; } export declare const Widget: import("react").ForwardRefExoticComponent>;