editextock
Version:
This is a Text Editor.
10 lines (9 loc) • 326 B
TypeScript
import { Theme } from "@mui/material";
import { ReactNode } from "react";
export declare const darkTheme: Theme;
type ThemeEditextockProps = {
theme: Theme;
children: ReactNode;
};
export declare const ThemeEditextock: ({ theme, children }: ThemeEditextockProps) => import("react/jsx-runtime").JSX.Element;
export {};