import { VNode, Slot } from 'vue'; export interface Props { icon?: VNode | Slot; description?: string; tooltip?: string; tooltipProps?: object; type?: 'default' | 'primary'; shape?: 'circle' | 'square'; bottom?: number | string; right?: number | string; zIndex?: number; visibilityHeight?: number; to?: string | HTMLElement; listenTo?: string | HTMLElement; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { tooltip?(_: {}): any; default?(_: {}): any; icon?(_: {}): any; description?(_: {}): any; }; refs: { backTopPlaceholderRef: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent void; show: (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly & Readonly<{ onClick?: ((...args: any[]) => any) | undefined; onShow?: ((...args: any[]) => any) | undefined; }>, { description: string; type: "default" | "primary"; icon: VNode | Slot; shape: "circle" | "square"; bottom: number | string; right: number | string; tooltip: string; to: string | HTMLElement; tooltipProps: object; zIndex: number; visibilityHeight: number; listenTo: string | HTMLElement; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { backTopPlaceholderRef: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };