export type LabelType = "success" | "warning" | "danger" | "info"; export declare class SharpenLabel { /** * Alert type */ type: LabelType; /** * Icon */ icon: string; render(): any; }