export type AlertType = 'success' | 'warning' | 'danger'; export declare class SharpenAlert { /** * Alert type */ type: AlertType; /** * Icon */ icon: string; /** * The alert heading */ heading: string; render(): any; }