import type { SxProps } from '@mui/material';
import { FC, ReactNode } from 'react';
declare const CodeBox: FC<{
    children: ReactNode;
    sx?: SxProps;
}>;
export default CodeBox;
