import { ParameterizedTemplate } from '../types'; interface Props { template: ParameterizedTemplate; gotoTemplatesView: () => void; gotoTemplateView: (templateId: string) => void; } export default function OutputView({ template, gotoTemplatesView, gotoTemplateView, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export {};