@retentful/core
Version:
This is the button widget that you import into the app
17 lines (16 loc) • 375 B
TypeScript
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 };