interface StringWrapper {
  new (arg: any): String;
}
export declare const StringWrapper: StringWrapper;
export declare class LazyJsonString extends StringWrapper {
  deserializeJSON(): any;
  toJSON(): string;
  static fromObject(object: any): LazyJsonString;
}
export {};
