import { ReactNode } from 'react'; export interface PhaseBannerProps { /** text to be displayed in phase banner */ text?: string | null; /** phase banner tag properties */ tag?: { text: string; }; children?: ReactNode; classBlock?: string; classModifiers?: string | string[] | null; className?: string; } export declare const DEFAULT_CLASS = "govuk-phase-banner"; /** A component to display the status of something. */ export declare const PhaseBanner: ({ children, classBlock, classModifiers, className, tag, ...props }: PhaseBannerProps) => import("react/jsx-runtime").JSX.Element;