import React from 'react'; import { TagColor } from '../Tag'; export type SubscriptionHeaderProps = { title: string; price?: { color: string; label: string; }; tag?: { color: TagColor; label: string; }; children?: React.ReactNode; interval?: string; }; export declare const SubscriptionHeader: ({ title, tag, children, price, interval, }: SubscriptionHeaderProps) => React.JSX.Element; export default SubscriptionHeader;