from typing import Any

from django.db.models import Func as Func

class IntervalToSeconds(Func):
    function: str = ...
    template: str = ...
    def __init__(
        self, expression: Any, *, output_field: Any | None = ..., **extra: Any
    ) -> None: ...

class SecondsToInterval(Func):
    function: str = ...
    template: str = ...
    def __init__(
        self, expression: Any, *, output_field: Any | None = ..., **extra: Any
    ) -> None: ...
