import { AdminPlansService } from './admin-plans.service'; export declare class AdminPlansController { private readonly plansService; constructor(plansService: AdminPlansService); findAll(): Promise<({ _count: { subscriptions: number; }; } & { id: string; createdAt: Date; updatedAt: Date; name: string; currency: string; slug: string; description: string | null; price: import("@prisma/client/runtime/library").Decimal; durationType: string; durationDays: number | null; trialDays: number; features: import("@prisma/client/runtime/library").JsonValue; badge: string | null; badgeColor: string | null; highlightColor: string | null; sortOrder: number; isActive: boolean; isVisible: boolean; isFeatured: boolean; maxWallets: number | null; maxGoals: number | null; maxTeamMembers: number | null; apiEnabled: boolean; apiRateLimit: number | null; })[]>; findOne(id: string): Promise<({ _count: { subscriptions: number; }; } & { id: string; createdAt: Date; updatedAt: Date; name: string; currency: string; slug: string; description: string | null; price: import("@prisma/client/runtime/library").Decimal; durationType: string; durationDays: number | null; trialDays: number; features: import("@prisma/client/runtime/library").JsonValue; badge: string | null; badgeColor: string | null; highlightColor: string | null; sortOrder: number; isActive: boolean; isVisible: boolean; isFeatured: boolean; maxWallets: number | null; maxGoals: number | null; maxTeamMembers: number | null; apiEnabled: boolean; apiRateLimit: number | null; }) | null>; create(data: any): Promise<{ id: string; createdAt: Date; updatedAt: Date; name: string; currency: string; slug: string; description: string | null; price: import("@prisma/client/runtime/library").Decimal; durationType: string; durationDays: number | null; trialDays: number; features: import("@prisma/client/runtime/library").JsonValue; badge: string | null; badgeColor: string | null; highlightColor: string | null; sortOrder: number; isActive: boolean; isVisible: boolean; isFeatured: boolean; maxWallets: number | null; maxGoals: number | null; maxTeamMembers: number | null; apiEnabled: boolean; apiRateLimit: number | null; }>; update(id: string, data: any): Promise<{ id: string; createdAt: Date; updatedAt: Date; name: string; currency: string; slug: string; description: string | null; price: import("@prisma/client/runtime/library").Decimal; durationType: string; durationDays: number | null; trialDays: number; features: import("@prisma/client/runtime/library").JsonValue; badge: string | null; badgeColor: string | null; highlightColor: string | null; sortOrder: number; isActive: boolean; isVisible: boolean; isFeatured: boolean; maxWallets: number | null; maxGoals: number | null; maxTeamMembers: number | null; apiEnabled: boolean; apiRateLimit: number | null; }>; delete(id: string): Promise<{ id: string; createdAt: Date; updatedAt: Date; name: string; currency: string; slug: string; description: string | null; price: import("@prisma/client/runtime/library").Decimal; durationType: string; durationDays: number | null; trialDays: number; features: import("@prisma/client/runtime/library").JsonValue; badge: string | null; badgeColor: string | null; highlightColor: string | null; sortOrder: number; isActive: boolean; isVisible: boolean; isFeatured: boolean; maxWallets: number | null; maxGoals: number | null; maxTeamMembers: number | null; apiEnabled: boolean; apiRateLimit: number | null; }>; reorder(body: { planIds: string[]; }): Promise<{ success: boolean; }>; }