import { CSSProperties, FC } from "react"; import type { StandardLonghandProperties } from "csstype"; import { XHComponentCommonProps } from "../../types"; export declare type LoadingProps = { style?: CSSProperties & { "--loading-border-color"?: StandardLonghandProperties["color"]; "--loading-border-width"?: string; }; size?: number; } & XHComponentCommonProps; declare const Activityindicator: FC; export default Activityindicator;