///
import { AlertSectionProps } from './types';
/**
* AlertSection - можно складывать в едицый блок
* TextSegment, TimeStampSegment, CloseButtonSegment, StacktraceSegment - опциональны
* @example
* двухуровневый Alert
* (on top -> title + close + timestamp) , (on bottom -> text)
*
*/
export declare const AlertSection: ({ text, timestamp, closeButton, onClick, stacktrace, stacktraceVisible, textClassName, style, isSimple, t, }: AlertSectionProps) => JSX.Element;