import { ReactNode } from 'react'; export interface WarningTextProps { children: ReactNode; classBlock?: string; classModifiers?: string | string[] | null; className?: string; } export declare const DEFAULT_CLASS = "govuk-warning-text"; /** * Bold text with a warning symbol. ## When to use this component Use the warning text component when you need to warn users about something important, such as legal consequences of an action, or lack of action, that they might take. ## How it works Use warning text very sparingly - it's less effective if it's overused. */ export declare const WarningText: ({ children, classBlock, classModifiers, className, ...attrs }: WarningTextProps) => import("react/jsx-runtime").JSX.Element;