import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * controls the horizontal alignment of the button on the page */ position?: "left" | "center" | "right" | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type BackToTopProps = typeof __propDef.props; export type BackToTopEvents = typeof __propDef.events; export type BackToTopSlots = typeof __propDef.slots; /** * BackToTop * * Back to top button that appears after user starts scrolling down * * Props: * - position("right"|"left"|"center"): controls the horizontal alignment of the button on the page * * Css Variables: * - backToTopBg (default: #b3386b): Button background * - backToTopBgFocus (default: #99003b): Button background when focused * - backToTopBorder (default: #bf5383): Button border * - backToTopBorderFocus (default: #a31c54): Button border when focused * - backToTopText (default: #fafafa): Text color * - backToTopTextFocus (default: #fafafa): Text color when focused * - backToTopIcon (default: #fafafa): Icon color * - backToTopIconFocus (default: #fafafa): Icon color when focused */ export default class BackToTop extends SvelteComponentTyped { } export {};