interface PickProps { title: string; items: T[]; keyOf: (t: T) => string; formatLabel: (t: T) => string; formatHint?: (t: T) => string | undefined; onPick: (t: T) => void; onCancel: () => void; } export declare function PickList({ title, items, keyOf, formatLabel, formatHint, onPick, onCancel, }: PickProps): import("react/jsx-runtime").JSX.Element; export {};