The function returns "one" if the input string contains the character 'x' at least once, otherwise it returns "none".

[CODE]:
```python
def f(x: str) -> str:
    if 'x' in x:
        return 'one'
    else:
        return 'none'
```