import React from 'react';
export declare const FloatingLayout: ({ popupId, url, title, urlText, titleAlign, subtitle, subtitleAlign, newTab, imageDesktop, imageMobile, onClose, onOtherSubmit, }: {
    popupId: string;
    title?: string;
    titleAlign?: string;
    subtitle?: string;
    subtitleAlign?: string;
    url?: string;
    urlText?: string;
    newTab?: boolean;
    imageDesktop?: string;
    imageMobile?: string;
    onClose?: () => void;
    onOtherSubmit?: () => void;
}) => React.JSX.Element;
