interface Props { el: HTMLElement; to: number; duration?: number; x?: boolean; } export default function smoothScroll({ el, to, duration, x }: Props): void; export {};