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