import { InputProps } from '@wakeadmin/element-adapter'; import { DefineAtomicProps } from '../../atomic'; import { FatLinkProps, FatTextOwnProps } from '../../fat-text'; export type AUrlProps = DefineAtomicProps any; /** * 透传 FatLink 的参数 */ linkProps?: FatLinkProps; /** * 未定义时的占位符 */ undefinedPlaceholder?: any; } & FatTextOwnProps>; declare global { interface AtomicProps { url: AUrlProps; } } export declare const AUrlComponent: import("../../atomic").AtomicComponent; export declare const AUrl: import("../../atomic").Atomic; //# sourceMappingURL=url.d.ts.map