import React from 'react'; import type { Style, StyleProps } from './types/genericTypes'; type itemStyle = { container?: Style; heading?: Style; body?: Style; footerHeadingText?: Style; footerContetntText?: Style; footer?: Style; }; interface MainViewProps extends StyleProps { children?: React.ReactNode; Heading?: React.ReactNode; Body?: React.ReactNode; Footer?: React.ReactNode; itemStyle?: itemStyle; validTill: Date; } export declare const SubscriptionExpiredView: React.MemoExoticComponent<({ children, style, itemStyle, validTill, Body: B, Footer: F, Heading: H, }: MainViewProps) => JSX.Element>; export {}; //# sourceMappingURL=index.d.ts.map