import type { Model, ModelState } from "instill-sdk"; import { Nullable } from "@instill-ai/design-system"; export type ModelOutputActiveView = "preview" | "json"; export type ModelPlaygroundProps = { model?: Model; modelState: Nullable; onRun: () => void; }; export declare const convertValuesToString: (props: Record) => Record; export declare const ModelPlayground: ({ model, modelState, onRun, }: ModelPlaygroundProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ModelPlayground.d.ts.map