"""
The module will return special predefined variable name in Paddle
"""
from __future__ import annotations
__all__ = ['empty', 'temp']
def empty() -> str:
    ...
def temp() -> str:
    ...
