import type { CustomElement } from '..'; import { type JSXElement } from '../basic-config'; export interface SpinProps { /** 自定义样式表 */ css?: string; /** 自定义类名 */ class?: string; /** 加载状态 */ spin?: boolean; /** 内容 */ children?: JSXElement | JSXElement[]; } declare function Spin(props: SpinProps): import("solid-js").JSX.Element; declare namespace Spin { var registry: () => void; } export type SpinElement = CustomElement; export default Spin;