import { AppEditorStore } from '../../store/appEditorStore'; import { StudioCommandValidateCodeOptions } from '../global/types'; export interface ParseCodeProps extends StudioCommandValidateCodeOptions { appStore: AppEditorStore; } export declare function parseCode(props: ParseCodeProps): { input: string; output: string; error: string; };