import React from 'react'; import { SxProps } from '@mui/material'; import type { Theme } from 'src/theme/muiTheme'; import type { LabelSize } from '../typography/sizing'; /** Grey label over child elements */ export declare const LabeledDetail: React.FC<{ label: string; sx?: SxProps; sxLabel?: SxProps; labelSize?: LabelSize; }>;