import React from "react";
type FloatingCtaProps = {
    serviceType: string;
    currentUrl: string;
    goToApply: (e?: React.MouseEvent<HTMLAnchorElement, MouseEvent> | React.MouseEvent<HTMLSpanElement, MouseEvent>) => void;
    sendLog: (action: string, data: {
        [dataName: string]: string;
    }) => void;
};
export default function FloatingCta({ serviceType, currentUrl, goToApply, sendLog, }: FloatingCtaProps): JSX.Element;
export {};
