/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; import type { CliTheme } from "../terminal/detectTerminalTheme"; export declare function CliThemeProvider({ value, slot, }: { readonly value: CliTheme; readonly slot: React.ReactNode; }): React.ReactElement; export declare function useCliTheme(): CliTheme;