import type { BaseInputProps } from '@sinoui/core/BaseInput'; import React from 'react'; /** * 轮廓输入框组件属性类型 */ export interface OutlinedInputProps extends BaseInputProps { /** * 如果设置为 `true`,轮廓上出现缺口,并且标签上浮到轮廓缺口处。 */ notched?: boolean; /** * 指定输入框对应的标签引用 */ labelRef?: React.RefObject; /** * 密集模式 */ dense?: boolean; /** * 如果设置为`true`,则表示输入框处于聚焦状态。 */ focused?: boolean; /** * 无标签 */ noLabel?: boolean; /** * 是否显示方角 */ square?: boolean; } /** * 轮廓输入框 */ declare const OutlinedInput: React.ForwardRefExoticComponent & React.RefAttributes>; export default OutlinedInput;