import BsAlert from "react-bootstrap/Alert"; import type { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from "react"; import type { IAlertProps } from "./Alert.types"; declare type IAlertWrapper = ForwardRefExoticComponent & RefAttributes>; export interface IAlert extends IAlertWrapper { Link: typeof BsAlert.Link; Heading: typeof BsAlert.Heading; } export declare const Alert: IAlert; export type { IAlertProps }; export default Alert;