Repository URL to install this package:
|
Version:
2.1.16 ▾
|
@skava/ui-presets
/
dist
/
presets
/
Subscription
/
ManageSubscriptionPage
/
ManageSubscriptionPage.d.ts
|
|---|
import React from 'react';
import { NO_OP } from 'exotic';
import { defaultRenderButtons, defaultRenderPrice, defaultRenderExpectedDelivery } from './renderProps';
import { ManageSubscriptionPageProps } from './typings';
declare class ManageSubscriptionPage extends React.PureComponent<ManageSubscriptionPageProps> {
static defaultProps: {
className: string;
renderPrice: typeof defaultRenderPrice;
renderButtons: typeof defaultRenderButtons;
renderExpectedDelivery: typeof defaultRenderExpectedDelivery;
onBuyNow: typeof NO_OP;
OnSkip: typeof NO_OP;
onCancelSubscription: typeof NO_OP;
};
render(): JSX.Element;
}
export { ManageSubscriptionPage };
export default ManageSubscriptionPage;