import { ReactFC } from '@formily/reactive-react'; import React from 'react'; import './styles.less'; export interface IInputItemsContext { width?: string | number; vertical?: boolean; } export interface IInputItemsProps { className?: string; style?: React.CSSProperties; width?: string | number; vertical?: boolean; } export interface IInputItemProps { className?: string; style?: React.CSSProperties; icon?: React.ReactNode; width?: string | number; vertical?: boolean; title?: React.ReactNode; } export declare const InputItems: ReactFC & { Item: ReactFC; };