import { type QuotaNotificationOptions } from '../../hooks/use-quota-notification.js'; /** * Props for QuotaNotification component * * @sisenseInternal */ export interface QuotaNotificationProps extends QuotaNotificationOptions { /** * Additional CSS class name */ className?: string; } /** * Component that displays credit balance warnings/errors * * Shows an error banner when credit is exceeded (not dismissible). * Shows a warning banner when credit usage >= warningThreshold (dismissible via close button, * resets each time the assistant loads). * Automatically updates via polling every 60 seconds. * * @param props - QuotaNotification props * @returns QuotaNotification component or null * @sisenseInternal */ export declare function QuotaNotification({ className, enabled, warningThreshold, exceededThreshold, }?: QuotaNotificationProps): import("react/jsx-runtime").JSX.Element | null;