import { FC } from 'react';
export declare enum WifiStatusType {
    Excellent = "Excellent",
    Good = "Good",
    Fair = "Fair",
    Poor = "Poor",
    Unavailable = "Unavailable",
    Error = "Error",
    Searching = "Searching"
}
export interface IWifiStatusProps {
    status: WifiStatusType;
    color?: string;
    errorColor?: string;
    offlineColor?: string;
    width?: string | number;
}
export declare const WifiStatus: FC<IWifiStatusProps>;
