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