import React from 'react';
export type LoadingIndicatorProps = {
    backgroundColor?: string;
    color?: string;
    size?: number;
    width?: number;
};
export declare const LoadingIndicator: ({ backgroundColor, color, size, width, }: LoadingIndicatorProps) => React.JSX.Element;
