/** @jsxImportSource @opentui/react */ import { type ReactNode } from "react"; import type { AppServices } from "../../../ui-core/bootstrap/composition-root.js"; import type { Theme } from "../../../ui-core/rendering/theme.js"; import type { PickerRequest } from "../../../ui-core/controllers/overlay-controller.js"; export interface PickerProps { readonly services: AppServices; readonly theme: Theme; readonly request: PickerRequest; } export declare function Picker(props: PickerProps): ReactNode;