export interface KoraHandleItem { name: string; isDeMi?: boolean; /** Virtual SubHandle (issued off-wallet; flagged by the app from the BFF). */ virtual?: boolean; /** Raw image reference (`ipfs://…` or https); rendered via `` gateway failover. */ image?: string | null; } export declare const WALLET_PANEL_SHELL: string; /** One handle row. `selected` marks the active handle. */ export declare function handleRowHTML(item: KoraHandleItem, selected: boolean): string; /** Profile-avatar markup (image with failover, or letter placeholder) — set as innerHTML by the element. */ export declare function profileAvatarHTML(name: string, image: string | null | undefined): string; //# sourceMappingURL=template.d.ts.map