import React, { FC } from 'react'; interface HorizontalSectionProps { children: React.ReactNode; toRight?: boolean; start?: string; addAnimation?: (fromTo: gsap.core.Tween) => void; } export declare const HorizontalSection: FC; export {};