import ' rollup-plugin-inject-process-env';
import React, { FC } from "react";
export interface Props {
    readonly visible: boolean;
    /**
     * How long to display the bubble, in MS
     */
    readonly timeout?: number;
    /**
     * How long to delay showing the bubble, in MS
     */
    readonly delay?: number;
    readonly animate?: boolean;
    readonly buttonAnimation?: string;
    readonly dismissible?: boolean;
    onClick?: () => void;
    onDismiss?: () => void;
}
declare const CtaBubbleContainer: FC<React.PropsWithChildren<Props>>;
export default CtaBubbleContainer;
