import { type MenuItem } from './profiles/menu-items.js'; import type { Step } from './profiles-types.js'; interface ProfilesViewProps { step: Step; items: MenuItem[]; cursor: number; error: string | null; accountsDirPath: string; onAccountPick: (email: string) => void; onProfilePick: (name: string) => void; onNameSubmit: (raw: string) => void; /** PickList cancel + note/error dismissal route back to the home menu. */ onCancelToHome: () => void; } export declare function ProfilesView({ step, items, cursor, error, accountsDirPath, onAccountPick, onProfilePick, onNameSubmit, onCancelToHome, }: ProfilesViewProps): import("react/jsx-runtime").JSX.Element; export {};