/** * Interface representing the common properties and state for widgets. */ export interface WidgetsCommonPropsAndState { /** * CSS classes to be applied on the widget main container * * @defaultValue `''` */ className: string; }