import { MmUIComponent } from './component' export interface scrollContainer { /** * The function passed into the scroll-container property */ (): HTMLElement } export interface link { /** Link title */ title: string /** Link href */ href: string /** Sub links */ children: link[] } /** Anchor Component */ export declare class MmAnchor extends MmUIComponent { /** Fixed or not */ affix: boolean /** Fixed to bottom, unit px */ fixedBottom: number /** Fixed to top, unit px */ fixedTop: number /** Links to display */ links: link[] /** Content container */ scrollContainer: scrollContainer }