import React, { CSSProperties } from 'react'; export type LeadGenEmptyProps = { onClose?: () => void; onContinue?: () => void; className?: string; style?: CSSProperties; }; export declare const LeadGenEmpty: (props: LeadGenEmptyProps) => React.JSX.Element;