/** * AccordionContent component - Collapsible content section. * * Uses centralized animation system for smooth expand/collapse animations. * * @example * ```svelte * * This is the content that will expand and collapse. * * ``` */ interface AccordionContentProps { /** * Additional CSS classes. */ class?: string; } declare const AccordionContent: import("svelte").Component; type AccordionContent = ReturnType; export default AccordionContent; //# sourceMappingURL=AccordionContent.svelte.d.ts.map