import { IUniversalComponentEntity, IWebComponentEntity } from './component-definition.interface'; import { IContainerEntity, IUniversalContainerEntity, IWebContainerEntity } from './container-definition.interface'; /** * @react-native-compatible * @stable [27.09.2019] */ export interface IUniversalComponentProps extends IUniversalComponentEntity { } /** * @deprecated */ export interface IComponentProps extends IUniversalComponentEntity, IWebComponentEntity { } /** * @react-native-compatible * @stable [27.09.2019] */ export interface IUniversalContainerProps extends IUniversalContainerEntity { } /** * TODO * @deprecated Use IGenericContainerProps */ export interface IContainerProps extends IContainerEntity, IWebContainerEntity { }