import { FunctionComponent } from 'react';

type TrialCardProps = {
    promoHeadline: string;
    promoDescription: string;
    ctaText: string;
    ctaFn: () => void;
};
declare const TrialCard: FunctionComponent<TrialCardProps>;

export { TrialCard as default };
export type { TrialCardProps };
