export declare class InsigniaImage {
  /**
   * The image source.
   */
  source: string;
  /**
   * The image alternative text.
   */
  alt: string;
  componentWillLoad(): void;
  render(): any;
}
