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