import { ComponentProps, ReactNode } from 'react'; import { TMediumSizes } from '../../types.ts'; import { LinkProps } from '../Link/types'; export type LinkList = { id: number; linkProps: LinkProps; }; export interface SectionMessageProps extends Omit, "title"> { title?: string; className?: string; message: ReactNode; size: TMediumSizes; status?: "info" | "success" | "danger" | "warning"; icon?: ReactNode; linkList?: LinkList[]; } export declare const SectionMessage: ({ title, message, className, status, icon, size, linkList, }: SectionMessageProps) => import("react").JSX.Element; export default SectionMessage;