import React, { CSSProperties } from 'react'; type LeadGenThankYouItem = { htmlText: string; align: string; url: string; newtab: boolean; src: string; onClick?: () => void; }; export type LeadGenThankYouProps = { image: Partial>; title: Partial>; description: Partial>; showButton?: boolean; button: Partial>; className?: string; style?: CSSProperties; }; export declare const LeadGenThankYou: ({ image, title, description, showButton, button, className, style, }: LeadGenThankYouProps) => React.JSX.Element; export {};