import { default as React } from 'react'; interface CTAButton { label: string; href: string; variant?: 'primary' | 'secondary' | 'outline'; external?: boolean; } interface CTASectionProps { title: string; description: string; primaryButton: CTAButton; secondaryButton?: CTAButton; gradient?: { from: string; to: string; via?: string; }; textColor?: 'light' | 'dark'; className?: string; size?: 'sm' | 'md' | 'lg'; } export declare const CTASection: React.FC; export {}; //# sourceMappingURL=CTASection.d.ts.map