import React from 'react'; export interface SelectDialogProps { title: string; items: Array<{ label: string; value: string; }>; onSelect: (value: string) => void; onCancel: () => void; overlay?: boolean; } export declare const SelectDialog: React.FC;