import { ReactNode } from "react"; import { BaseProps } from "../../wui-core/src/iCore"; export interface BackTopProps extends BaseProps { visibilityHeight: number; click: () => void; target: () => (HTMLElement | Window); character: ReactNode; }