import { A as AutumnError, e as EntitledResult, g as EventResult, d as AttachResult, b as BillingPortalResponse } from './genTypes-RkqyS6Mn.js'; declare const entitledAction: ({ customerId, featureId, }: { customerId: string; featureId: string; }) => Promise<{ data: null; error: AutumnError; } | { data: EntitledResult; error: null; }>; declare const sendEventAction: ({ customerId, featureId, value, }: { customerId: string; featureId: string; value: number; }) => Promise<{ data: null; error: AutumnError; } | { data: EventResult; error: null; }>; declare const attachAction: ({ customerId, productId, }: { customerId: string; productId: string; }) => Promise<{ data: null; error: AutumnError; } | { data: AttachResult; error: null; }>; declare const getBillingPortalAction: ({ customerId, params, }: { customerId: string; params?: any; }) => Promise<{ data: BillingPortalResponse | null; error: AutumnError | null; }>; export { attachAction, entitledAction, getBillingPortalAction, sendEventAction };