import { AppEditorStore } from '../../store/appEditorStore';
export interface ParseCodeProps {
    code: string;
    appStore: AppEditorStore;
    showToastError?: boolean;
}
export declare function parseCode(props: ParseCodeProps): {
    input: string;
    output: string;
    error: string;
};
