import type { IPlaygroundExample } from "../structures/IPlaygroundExample"; interface ExamplePickerProps { examples: readonly IPlaygroundExample[]; onPick: (id: string) => void; /** Display labels for groups. Maps `group` key → rendered heading. */ groupLabels?: Record; } export declare function ExamplePicker({ examples, onPick, groupLabels, }: ExamplePickerProps): import("react/jsx-runtime").JSX.Element | null; export {};