import { BillingMetric, BillingService } from '@abyss-project/main'; import { UseBoundStore, StoreApi } from 'zustand'; export interface QuotaDialogPayload { metric: BillingMetric; service: BillingService; rawMessage?: string; } interface QuotaDialogState { open: boolean; payload: QuotaDialogPayload | null; show: (payload: QuotaDialogPayload) => void; hide: () => void; } export declare const useQuotaDialogStore: UseBoundStore>; export {};