export interface BillingAddon { id: string; name: string; description?: string; price: string | number; currency?: string; selected?: boolean; } interface AddonPickerProps { addons: BillingAddon[]; class?: string; onchange?: (id: string, selected: boolean) => void; } declare const AddonPicker: import("svelte").Component; type AddonPicker = ReturnType; export default AddonPicker;