import { ReactNode } from 'react'; export interface TextBlockProps { bodyCopy: ReactNode | string; headline: ReactNode | string; id?: string; internalName?: string; } export declare const TextBlock: (props: TextBlockProps) => import("react").JSX.Element;