import React from 'react' import { WidgetProps } from '@ui-schema/ui-schema/Widget' import { WidgetsBindingFactory } from '@ui-schema/ui-schema/WidgetsBinding' export interface BtsWidgetBinding extends WidgetsBindingFactory { types: { string: React.ComponentType boolean: React.ComponentType number: React.ComponentType integer: React.ComponentType } custom: { Text: React.ComponentType SimpleList: React.ComponentType OptionsCheck: React.ComponentType OptionsRadio: React.ComponentType Select: React.ComponentType SelectMulti: React.ComponentType } } export const widgets: BtsWidgetBinding