import React from 'react';
import type { SxProps } from '@mui/system';
interface InlineInformationProps<T = unknown> {
    label: string;
    value?: T;
    sx?: SxProps;
    gutter?: number;
}
declare const _default: <T>({ label, value, sx, children, gutter }: React.PropsWithChildren<InlineInformationProps<T>>) => JSX.Element;
export default _default;
