import type { CreateWindowParams, ToolType } from "../windows/windowTypes"; import type { ToolId } from "../hooks/useToolDock"; export type ToolRegistryEntry = { id: ToolId; label: string; window: Omit & { title: string; type?: ToolType; }; }; export declare const defaultToolRegistry: Record; export declare const defaultToolOrder: ToolId[]; export type ToolOverride = { label?: string; window?: Partial; }; export type ToolsDockThemeOptions = { initial?: "light" | "dark" | "system"; persist?: boolean; showToggle?: boolean; };