declare global { interface PluginRegistry { IonChirp?: IonChirp; } } export interface IonChirp { echo(options: { value: string; }): Promise<{ value: string; }>; getValidationCode(): Promise; }