import "./raw_payload.css"; import type * as React from "react"; import { useRender } from "@base-ui/react/use-render"; import { type StyleProps } from "./style_props"; export interface RawPayloadProps extends StyleProps { title: string; value: string; testID?: string; ref?: React.Ref; render?: useRender.RenderProp; } /** * A titled DUMP — a tool call's input, a webhook body, a trigger's record. * * The value is preformatted code rather than a run of prose, so it renders as * `
` and states its own rung: a `Text` would have to be argued out of the
 * body face, and the whitespace a dump arrives with is the whole reason anyone
 * reads it.
 */
export declare function RawPayload(props: RawPayloadProps): React.ReactElement>;
export declare function stringifyData(data: unknown): string;