import { Atomic, AtomicCommonProps } from './types'; import { FatConfigurable } from '../fat-configurable'; export declare function defineAtomic
>(a: Atomic = {
(props: P): any;
/**
* 原始定义
*/
__setup__(props: P): any;
};
/**
* 用于创建原件函数组件
* note: 所有参数都通过 props 传递,包括 slots、events
* @param setup
* @param name
*/
export declare function defineAtomicComponent >(setup: (props: P) => () => any, options: {
name: string;
globalConfigKey?: keyof FatConfigurable;
}): AtomicComponent ;
//# sourceMappingURL=define.d.ts.map