import React from 'react'; declare type Props = { children: React.ReactNode; renderHeader: () => React.ReactNode; }; declare const StickySection: (props: Props) => JSX.Element; export default StickySection;