export declare enum StatusVariants { ok = "ok", information = "information", 'take note' = "take note", alert = "alert" } export declare enum SizeVariants { small = "small", medium = "medium", large = "large" } export type AlertStatusKeys = keyof typeof StatusVariants; export type SizeKeys = keyof typeof SizeVariants; export interface AlertIconBadgeProps { size?: SizeKeys; variant?: AlertStatusKeys; } export declare const getSizes: (size: SizeKeys) => { boxSize: number; iconSize: number; }; declare const AlertIconBadge: ({ size, variant, }: AlertIconBadgeProps) => JSX.Element; export default AlertIconBadge;