import type { ToastProps } from "react-bootstrap/Toast"; import type { BsPrefixPropsWithChildren } from "react-bootstrap/helpers"; export interface IToastProps extends Omit { } export interface IToastHeaderProps extends BsPrefixPropsWithChildren { onCloseButtonClick?: () => void; closeLabel?: string; closeButton?: boolean; }