import { IActivityIndicatorProps } from "./types"; /** * A customizable `ActivityIndicator` component that wraps the standard * `ActivityIndicator` from React Native. This component integrates * with the application's theme to provide a consistent loading indicator * appearance based on the current theme colors. * * @param {ActivityIndicatorProps} props - The properties passed to the * `ActivityIndicator` component. This includes all standard * `ActivityIndicatorProps` from React Native, allowing for customization * of the loading indicator's behavior and appearance. * * @example * Here’s an example of how to use the custom `ActivityIndicator`: * */ export declare function ActivityIndicator({ size, borderWidth, style, variant, testID, id, color, className, children, role, ...props }: IActivityIndicatorProps): import("react/jsx-runtime").JSX.Element; export * from "./types";