import type { BaseInputProps } from '@sinoui/core/BaseInput'; import React from 'react'; /** * 填充模式下输入框组件属性类型 */ export interface FilledInputProps extends BaseInputProps { /** * 聚焦状态 */ focused?: boolean; /** * 密集模式 */ dense?: boolean; /** * 无标签 */ noLabel?: boolean; } /** * 填充模式输入框 */ declare const FilledInput: React.ForwardRefExoticComponent & React.RefAttributes>; export default FilledInput;