from typing import Any

from django.core.management.base import BaseCommand

class TemplateCommand(BaseCommand):
    url_schemes: Any = ...
    rewrite_template_suffixes: Any = ...
    app_or_project: Any = ...
    paths_to_remove: Any = ...
    verbosity: Any = ...
    def handle_template(self, template: Any, subdir: Any) -> Any: ...
    def validate_name(self, name: Any, app_or_project: Any) -> None: ...
    def download(self, url: Any) -> Any: ...
    def splitext(self, the_path: Any) -> Any: ...
    def extract(self, filename: Any) -> Any: ...
    def is_url(self, template: Any) -> Any: ...
    def make_writeable(self, filename: Any) -> None: ...
