import { ComponentPropsWithoutRef } from 'react'; type ELAlertProps = ComponentPropsWithoutRef<'div'> & { color?: 'default' | 'warn' | 'danger'; label?: string; size?: 'medium' | 'small'; }; export declare const ELAlert: ({ label, color, size, ...rest }: ELAlertProps) => import("react/jsx-runtime").JSX.Element; export {};