import type { DesignKitEntry } from '@wrongstack/core/types'; import type React from 'react'; export interface DesignPickerProps { kits: DesignKitEntry[]; selected: number; stack: string; } /** * Design Studio kit picker overlay (opened by `/design`). Presentational only — * navigation/selection state lives in the reducer; Enter runs `/design * ` through the normal submit path, which pins the kit + loads its spec. * * Windowed via {@link useWindowedPicker} so 50+ installed kits stay * navigable on small terminals. */ export declare function DesignPicker({ kits, selected, stack }: DesignPickerProps): React.ReactElement; //# sourceMappingURL=design-picker.d.ts.map