import { ReactText } from 'react';
export declare enum SUBSCRIPTION_BAR_STYLE {
    REGULAR = "regular",
    MINI = "mini"
}
export interface ISubscriptionBarProps {
    /**
     * Color property for H4 component
     */
    colorH4?: string;
    /**
     * Heading for H4 component
     */
    headingH4: ReactText;
    /**
     * Heading for H5 component
     */
    headingH5?: ReactText;
    /**
     * Enum value for Subscription Bar type
     */
    style: string;
}
