export interface SkillMeta { name: string; displayName: string; description: string; category: string; tags: string[]; dependencies?: string[]; version?: string; pricing?: SkillPricingMetadata; source?: "official" | "custom" | "remote"; } export interface SkillPricingMetadata { tier?: "free" | "premium" | string; billingUnit?: string; costCents?: number; formattedCost: string; formattedUnitCost?: string; unitCount?: number; estimated?: boolean; quoteDependsOnInput?: boolean; quoteRequired?: boolean; description?: string; } export declare const CATEGORIES: readonly ["Development Tools", "Business & Marketing", "Productivity & Organization", "Project Management", "Content Generation", "Finance & Compliance", "Data & Analysis", "Media Processing", "Design & Branding", "Web & Browser", "Research & Writing", "Science & Academic", "Education & Learning", "Communication", "Health & Wellness", "Travel & Lifestyle", "Event Management"]; export type Category = (typeof CATEGORIES)[number]; export declare const BASIC_SKILL_NAMES: readonly ["image", "video", "audio", "music", "transcript", "audio-extract", "read-image", "read-pdf", "pdf-read", "pdf-to-markdown", "doc-read", "pdf-generate", "doc-generate", "read-csv", "read-excel", "excel", "convert"]; export type SkillRegistryProfile = "basic" | "all";