///
import { SxProps } from '@mui/material';
import type { Theme } from 'src/theme/muiTheme';
import { SanityBlockOr } from '../block-content';
import { TextSize } from '../typography/sizing';
declare type Props = {
title: string;
body?: SanityBlockOr;
/** Pass a single value to take default responsive styles, or a 2-tuple for `[mobile, desktop]` */
bodySize?: TextSize | [TextSize, TextSize];
sx?: {
root?: SxProps;
title?: SxProps;
body?: SxProps;
};
};
/** Vertically aligned, centered Title and Body components with normalized spacing */
export declare function TitleBody({ title, body, bodySize, sx }: Props): JSX.Element;
export {};