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) => JSX.Element | null; export {};