from typing import Any

from ..cmd import Command

class install_headers(Command):
    description: str
    user_options: Any
    boolean_options: Any
    install_dir: Any
    force: int
    outfiles: Any
    def initialize_options(self) -> None: ...
    def finalize_options(self) -> None: ...
    def run(self) -> None: ...
    def get_inputs(self): ...
    def get_outputs(self): ...
