import React from 'react'; import { SxProps } from '@mui/material'; interface Props { children: React.ReactNode; sx?: SxProps; style?: React.CSSProperties; } export declare const UiElement: ({ children, sx, style }: Props) => import("react/jsx-runtime").JSX.Element; export {};