import type { AccountRow } from '../../hooks/use-snapshot.js'; import type { MenuItem } from './menu-items.js'; interface AccountListProps { rows: AccountRow[]; cursor: number; focused: boolean; fallbackOn: boolean; tokenHealth: ReturnType | null; } export declare function AccountList({ rows, cursor, focused, fallbackOn, tokenHealth, }: AccountListProps): import("react/jsx-runtime").JSX.Element; interface MenuRendererProps { title: string; subtitle?: string; items: MenuItem[]; cursor: number; focused: boolean; emptyHint?: string; } export declare function MenuList({ title, subtitle, items, cursor, focused, emptyHint, }: MenuRendererProps): import("react/jsx-runtime").JSX.Element; export {};