import { ComponentInterface } from '../../stencil-public-runtime';
export type Type = 'success' | 'success_no_circle' | 'info' | 'warn' | 'waiting' | 'cancel' | 'download' | 'search' | 'clear';
export declare class Icon implements ComponentInterface {
  type: Type;
  size: string | number;
  color: string;
  render(): any;
}
