import type { HTMLAttributes, ReactNode } from 'react'; interface Props extends HTMLAttributes { bordered?: boolean; children?: ReactNode; /** * 会同时禁用多个表单 */ disabled?: boolean; split?: string; } export default function InputCompact(props: Props): JSX.Element; export {};