import { Incident } from "incident"; export declare namespace AccountNotFound { type Name = "AccountNotFound"; const name: Name; interface Data { } type Cause = undefined; } export declare type AccountNotFound = Incident; export declare namespace AccountNotFound { type Type = AccountNotFound; function format(): string; function create(username?: string): AccountNotFound; }