import { AtomicCommonProps, GetAtomicProps } from '../atomic'; import { OurComponentInstance } from '../utils'; type FatAtomicPropsInner = GetAtomicProps> = { valueType?: ValueType; } & Omit & { modelValue?: Props['value']; 'onUpdate:modelValue'?: Props['onChange']; }; export type FatAtomicProps = keyof { [K in keyof AtomicProps as FatAtomicPropsInner]: any; }; /** * 独立使用 atomic */ export declare const FatAtomic: new (props: FatAtomicPropsInner>) => OurComponentInstance>, {}, {}, {}>; export {}; //# sourceMappingURL=index.d.ts.map