import React from 'react'; export interface StickySectionProps { children: React.ReactNode; className?: string; style?: React.CSSProperties; } declare const StickySection: React.FC; export { StickySection }; export default StickySection;