UNPKG

@yamada-ui/react

Version:

React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion

12 lines (11 loc) 663 B
import { LoadingScheme } from "../../core/system/index.types.js"; import { Component } from "../../core/components/index.types.js"; import "../../core/index.js"; import { LoadingProps } from "./loading.js"; //#region src/components/loading/use-loading-component.d.ts declare const useLoadingComponent: (scheme: LoadingScheme) => Component<"svg", LoadingProps>; declare const getLoadingComponent: (scheme: LoadingScheme) => Component<"svg", LoadingProps>; declare const isLoadingScheme: (scheme: any) => scheme is LoadingScheme; //#endregion export { getLoadingComponent, isLoadingScheme, useLoadingComponent }; //# sourceMappingURL=use-loading-component.d.ts.map