///
import { AlertSectionProps } from './types';
declare type TextSegmentPropsType = {
className: AlertSectionProps['textClassName'];
} & Pick;
export declare const TextSegment: ({ text, className }: TextSegmentPropsType) => JSX.Element | null;
declare type TimeStampSegmentPropsType = Pick;
export declare const TimeStampSegment: ({ timestamp, text }: TimeStampSegmentPropsType) => JSX.Element | null;
declare type CloseButtonSegmentPropsType = {
extended: AlertSectionProps['isSimple'];
} & Pick;
export declare const CloseButtonSegment: ({ closeButton, onClick, text, timestamp, extended, }: CloseButtonSegmentPropsType) => JSX.Element | null;
declare type StacktraceSegmentPropsType = Pick;
export declare const StacktraceSegment: ({ stacktrace, onClick, stacktraceVisible, t }: StacktraceSegmentPropsType) => JSX.Element | null;
export {};