import type { ReactNode } from 'react'; import type { PriceTypeSingle, TimeUnit } from './types'; type NonScrollableContentProps = { discount: number; totalPrice: PriceTypeSingle; footer: ReactNode; children: ReactNode; totalPriceInfo?: ReactNode; totalPriceInfoPlacement?: 'left' | 'right'; totalPriceDescription?: ReactNode; additionalInfo?: string; unit: TimeUnit; priceInformation?: ReactNode; hideBeforePrice?: boolean; defaultPriceInformation: boolean; timePeriodAmount: number; compact: boolean; calculatorIcon: boolean; }; export declare const NonScrollableContent: ({ totalPrice, footer, children, totalPriceInfo, totalPriceInfoPlacement, unit, totalPriceDescription, additionalInfo, priceInformation, hideBeforePrice, defaultPriceInformation, timePeriodAmount, compact, calculatorIcon, }: NonScrollableContentProps) => import("react").JSX.Element; export {}; //# sourceMappingURL=NonScrollableContent.d.ts.map