import * as react from 'react';
import { HTMLAttributes, ReactNode } from 'react';

interface CardAccordationProps extends HTMLAttributes<HTMLDivElement> {
    trigger: ReactNode;
    children: ReactNode;
    defaultExpanded?: boolean;
    onToggleExpanded?: (isExpanded: boolean) => void;
}
declare const CardAccordation: react.ForwardRefExoticComponent<CardAccordationProps & react.RefAttributes<HTMLDivElement>>;

export { CardAccordation };
