import { type ReactNode } from "react"; type Options = { onDismiss?: () => void; cancelable?: boolean; }; export declare const select: (title: string, data: string[] | { values: T[]; renderItem: (item: T, key: React.Key) => ReactNode; }, onSelect: (item: T | string) => void, options?: Options) => void; export {}; //# sourceMappingURL=select.d.ts.map