/** * TerminalLogBadge Component. * * Wraps the base Badge component with terminal log level color styling. * Uses centralized LOG_LEVEL_STYLES from Terminal tokens. * * @module @mks2508/mks-ui/react/blocks/Terminal/components/TerminalLogBadge */ import type { ITerminalLogBadgeProps } from './TerminalLogBadge.types'; export type { ITerminalLogBadgeProps } from './TerminalLogBadge.types'; export { terminalLogBadgeStyles } from './TerminalLogBadge.styles'; export type { TerminalLogBadgeSlot } from './TerminalLogBadge.styles'; /** * TerminalLogBadge Component. * * Renders a Badge styled for terminal log levels with appropriate * color coding for each severity level, using centralized tokens. * * @example * ```tsx * 3 * 42 * ``` */ export declare function TerminalLogBadge({ level, children, slots, className }: ITerminalLogBadgeProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map