import React from "react";
export interface ChurnProps {
    appId: string;
    customerId: string;
    onAcceptCoupon: Function;
    onChurn: Function;
    label?: string;
    styles?: React.CSSProperties;
    debug?: boolean;
    preview?: boolean;
    refresh?: boolean;
}
declare const Churn: React.FC<ChurnProps & {
    children?: React.ReactNode;
}>;
export { Churn };
