import React from 'react'; import './BackToTop.stories.scss'; declare const _default: { title: string; component: React.FC<{ startSelector?: string; attributes?: Record; scrollableElement?: Window | HTMLElement; }>; content: {}; argTypes: {}; args: { startSelector: string; }; }; export default _default; export declare const Default: (args: { startSelector: string; }) => React.JSX.Element; export declare const WithNoSelector: { (args: { startSelector: string; }): React.JSX.Element; args: { startSelector: string; }; };