import React from 'react'; interface StickyCtaProps { formId: string; offset?: number; children?: React.ReactNode; } export declare const StickyCta: ({ formId, offset, children }: StickyCtaProps) => React.JSX.Element; export {};