from typing import Any

from sympy.core.numbers import Integer

def egyptian_fraction(r, algorithm=...) -> list[Any | Integer] | list[Any]: ...
def egypt_greedy(x, y) -> list[Any]: ...
def egypt_graham_jewett(x, y) -> list[Any]: ...
def egypt_takenouchi(x, y) -> list[Any]: ...
def egypt_golomb(x, y) -> list[Any]: ...
def egypt_harmonic(r) -> tuple[list[Any], Any]: ...
