/** @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"; export interface QueuePanelProps { readonly services: AppServices; readonly theme: Theme; readonly width: number; readonly onEdit: (text: string) => void; } declare function QueuePanelImpl(props: QueuePanelProps): ReactNode; export declare const QueuePanel: import("react").MemoExoticComponent; export {};