export interface Punycode {
  encode(input: string): string;
  decode(input: string): string;
}