import { FunctionComponent } from 'react';
interface UserInputProps {
    userInput: string;
}
/**
 * `UserInput` displays some text that represents input from the user.
 * For example an answer to a selection prompt.
 */
declare const UserInput: FunctionComponent<UserInputProps>;
export { UserInput };
