import { type ReactNode } from "react"; import type { TreeViewSelectAllParams } from "./types"; import type { API } from "../../types"; export declare function SelectAll({ api, render, }: { render?: (params: TreeViewSelectAllParams) => ReactNode; api: API; }): string | number | bigint | boolean | Iterable | Promise> | Iterable | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;