import React from 'react';
interface OfflineIndicatorProps {
    /** Custom class name for styling */
    className?: string;
    /** Text to show when online */
    onlineText?: string;
    /** Text to show when offline */
    offlineText?: string;
    /** Custom inline styles */
    style?: React.CSSProperties;
    /** Whether the app is currently online */
    isOnline: boolean;
}
export declare function OfflineIndicator({ className, onlineText, offlineText, style, isOnline }: OfflineIndicatorProps): React.JSX.Element;
export {};
//# sourceMappingURL=OfflineIndicator.d.ts.map