import { MmUIComponent } from './component' export interface target { /** * The function passed into the target property */ (): HTMLElement } /** Affix Component */ export declare class MmAffix extends MmUIComponent { /** Fixed to bottom, unit px */ fixedBottom: number /** Fixed to top, unit px */ fixedTop: number /** The function return specified container */ target: target /** Position type */ position: string }