export function t(key: string): () => string; export function o(key: string): () => string; interface CloneFunction { (props: Record): Node; } export function template(elementRef: () => Node): CloneFunction; interface FillFunction { (props: Record): Node; } export function fill(elementRef: () => Node): FillFunction;