8 lines
319 B
TypeScript
8 lines
319 B
TypeScript
import * as React from "react";
|
|
type DevToolsTheme = "dark" | "light" | "auto";
|
|
export declare const SandpackReactDevTools: ({ clientId, theme, className, ...props }: {
|
|
clientId?: string | undefined;
|
|
theme?: DevToolsTheme | undefined;
|
|
} & React.HTMLAttributes<HTMLDivElement>) => JSX.Element | null;
|
|
export {};
|