import { InputProps } from '@wakeadmin/element-adapter'; import { DefineAtomicProps } from '../../atomic'; import { FatTextOwnProps, FatTextProps } from '../../fat-text'; export type ATextProps = DefineAtomicProps any; /** * 透传 FatText 参数 */ textProps?: FatTextProps; /** * 未定义时的占位符 */ undefinedPlaceholder?: any; /** * 自定义 Input 实现 */ customInput?: any; } & FatTextOwnProps>; declare global { interface AtomicProps { text: ATextProps; } } export declare const ATextComponent: import("../../atomic").AtomicComponent; export declare const AText: import("../../atomic").Atomic; //# sourceMappingURL=text.d.ts.map