import { BaseProps, SizeType } from "../_utils/props.js"; import React, { ReactNode } from "react"; //#region src/loader/types.d.ts interface LoaderProps extends BaseProps, React.ComponentPropsWithoutRef<'div'> { /** customise the spinning indicator */ indicator?: ReactNode; /** loader size */ size?: SizeType; /** loading status */ loading?: boolean; /** customize description content when Spin has children */ tip?: string; /** vertical the content */ vertical?: boolean; /** determine whether blur the loading background */ blurred?: boolean; } //#endregion export { LoaderProps }; //# sourceMappingURL=types.d.ts.map