import { Component, CustomCurrencyNumberFormat } from "../../../types"; import { PieChartData } from "../../molecules"; interface PrepaidSummaryGraphVisualProps extends Component { billingCycleDates: string; creditsEnabled: boolean; creditsRemaining: number; creditsUnit: string; creditsUsed: number; customCurrencyNumberFormat?: CustomCurrencyNumberFormat; freeCredits: number; freeCreditsPercentage: string; horizontal?: boolean; pieChartRows: PieChartData[]; remainingPercentage: string; size?: string; totalCredits: number; usedPercentage: string; withDataInside?: boolean; withFooter?: boolean; } export declare const PrepaidSummaryGraphVisual: ({ withContainer, withTitle, title, pieChartRows, creditsEnabled, creditsUnit, billingCycleDates, horizontal, freeCredits, withFooter, withDataInside, callToAction, size, creditsUsed, creditsRemaining, customCurrencyNumberFormat, totalCredits, remainingPercentage, freeCreditsPercentage, usedPercentage, }: PrepaidSummaryGraphVisualProps) => import("react/jsx-runtime").JSX.Element; export {};