from typing import Any, List

import pystache.loader


class Renderer:
    def __init__(self, missing_tags: str, search_dirs: List[str]):
        pass

    def render(self, template: Any, kwargs: Any):
        pass