import { type SlotComponent } from "../hooks/use-slot/index.js"; import type { API, GridSpec } from "../types.js"; export interface SelectAllProps { readonly slot?: SlotComponent<{ readonly indeterminate: boolean; readonly selected: boolean; readonly toggle: (forceState?: boolean) => void; }>; } export declare function SelectAll({ api, slot, }: SelectAllProps & { readonly api: API; }): import("react").ReactElement>;