import { ReactNode } from 'react';
export interface AccordionCardProps {
    /** Clickable title (always visible). */
    title: ReactNode;
    /** Main content (hidden when expanded is false). */
    content: ReactNode;
    /** Indicator if Accordion should be expanded by default.*/
    expanded?: boolean;
}
export declare const AccordionCard: ({ title, content, expanded }: AccordionCardProps) => import("react/jsx-runtime").JSX.Element;
