import * as React from 'react'; import type { TxKeyPath } from '@/lib'; type ItemProps = { text: TxKeyPath; value?: string; onPress?: () => void; icon?: React.ReactNode; }; export declare const Item: ({ text, value, icon, onPress }: ItemProps) => React.JSX.Element; export {}; //# sourceMappingURL=item.d.ts.map