import { ComponentPropsWithoutRef } from 'react'; type ELAlertCardProps = ComponentPropsWithoutRef<'div'> & { title: string; text: string; buttonText: string; dismissFunc: () => void; type?: 'default' | 'warning'; breakpoint?: 'mobile' | 'desktop'; }; export declare const ELAlertCard: ({ title, text, buttonText, dismissFunc, type, breakpoint, ...rest }: ELAlertCardProps) => import("react/jsx-runtime").JSX.Element; export {};