import { FunctionComponent } from 'react';
interface CommandProps {
    command: string;
}
/**
 * `Command` displays a command as non-dimmed text.
 */
declare const Command: FunctionComponent<CommandProps>;
export { Command };
