import { ReactText } from 'react';
export declare enum SUBSCRIPTION_OFFER_STYLE {
    NORMAL = "normal",
    REVERSED = "reversed"
}
export interface ISubscriptionOfferProps {
    /**
     * Heading text for H4 component
     */
    headingH4: ReactText;
    /**
     * Body tect for H5 component
     */
    bodyH5: ReactText;
    /**
     * Button text for Button Text component
     */
    buttonText: ReactText;
    /**
     * Enum value for Subscription Offer type
     */
    style: SUBSCRIPTION_OFFER_STYLE;
}
