import { ReactNode } from 'react';
export type ExpandableContentProps = {
    title: ReactNode;
    content: ReactNode;
};
export default function ExpandableContent({ title, content, }: ExpandableContentProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ExpandableContent.d.ts.map