import { FC } from 'react';
export interface LocalhostProps {
    isEnabled: false;
    error: string;
    closeHost: () => void;
    onClickButtonLocalhost: () => void;
    label: string;
    isLoadButtonLocalhost?: boolean;
}
export declare const Localhost: FC<LocalhostProps>;
