import type { ComponentProps, ElementType } from 'react'; import { type AlertProps } from '../Alert'; import { type ButtonProps } from '../Button'; export type LinkButtonProps = Omit, 'children' | 'size' | 'color' | 'key' | 'loadingIndicator' | 'loadingPosition'> & { name?: string; } & Omit, ''>; export type DashboardAlertProps = Omit & { /** * Параметры ссылки */ linkButtonProps?: LinkButtonProps; /** * Если true, alert отображается */ isShow?: boolean; }; /** * Компонент отображения уведомления на всех страницах приложения */ export declare const DashboardAlert: (props: DashboardAlertProps) => JSX.Element;