import React from "react"; type Payload = { id: number; name: string; }; export type SelectOptions = { itemFunc?(item: any): string; onLongPress?(item: any): void; onPress?(item: any): void; title?: string; values?: Payload[] | any[]; }; interface Props { statusBarColor?: string; options?: SelectOptions | null; onClose?(): void; } export declare const SelectItems: React.FC; export default SelectItems; //# sourceMappingURL=index.d.ts.map