import { CardProps } from '@heroui/react'; import { ComponentProps } from 'react'; import { BillingUiOptions } from './billing-options.js'; export type BillingSettingsProps = BillingUiOptions & { className?: string; variant?: CardProps["variant"]; }; /** * Operations billing console: KPI strip and AthenaTable-backed panels. * User `/settings/billing` uses {@link CustomerBillingSettings}. */ export declare function BillingSettings({ className, client, dataProxy, defaultPageSize, pageSizeOptions, sections, showPageSizeSelector, showPagination, showRefresh, refetchInterval, showSummary, variant, }: BillingSettingsProps & ComponentProps<"div">): import("react").JSX.Element;