import { ComponentPropsWithoutRef, ReactNode } from 'react'; export interface InsetTextProps extends ComponentPropsWithoutRef<'div'> { children: ReactNode; classBlock?: string; classModifiers?: string | string[] | null; className?: string; } export declare const DEFAULT_CLASS = "govuk-inset-text"; /** A block of text that is inset. * ## When to use this component Use the inset text component to differentiate a block of text from the content that surrounds it, for example: - quotes - examples - additional information about the page ## When not to use this component Some users do not notice inset text if it’s used on complex pages or near to other visually prominent elements. For this reason, avoid using inset text as a way of highlighting very important information that users need to see. If you need to draw attention to very important content, like legal information, use the warning text component instead. ## How it works Use inset text very sparingly - it’s less effective if it’s overused. */ export declare const InsetText: ({ children, classBlock, classModifiers, className, ...attrs }: InsetTextProps) => import("react/jsx-runtime").JSX.Element;