/** * 文本输入组件公共逻辑导出 * * 供以下组件使用: * - PisellSingleLineText * - PisellLongText * - PisellPhone * - PisellEmail * - PisellUrl */ export type { DisplayState, ValidationResult, TextInputState, BaseTextInputProps, } from './types'; export { useTextInputState } from './hooks'; export { getDisplayState } from './utils'; export { validateValue as validateTextValue } from './utils';