import React from 'react';
type Properties = {
    message: string;
    commandSuggestion?: string;
    commandSuggestionSuffix?: string;
};
export default function ErrorMessage({ message, commandSuggestion, commandSuggestionSuffix }: Properties): React.JSX.Element;
export {};
