import type { ScreenExit } from './profiles-types.js'; interface ScreenProps { accountsDirPath: string; initialNotice: string | null; onExit: (e: ScreenExit) => void; } export declare function ProfilesScreen({ accountsDirPath, initialNotice, onExit }: ScreenProps): import("react/jsx-runtime").JSX.Element; export {};