import { HTMLAttributes, ReactNode } from 'react';
interface CardAccordationProps extends HTMLAttributes<HTMLDivElement> {
    trigger: ReactNode;
    children: ReactNode;
    defaultExpanded?: boolean;
    expanded?: boolean;
    onToggleExpanded?: (isExpanded: boolean) => void;
    value?: string;
    disabled?: boolean;
    /** Additional class for the trigger button */
    triggerClassName?: string;
    /** Additional class for the content wrapper */
    contentClassName?: string;
}
declare const CardAccordation: import("react").ForwardRefExoticComponent<CardAccordationProps & import("react").RefAttributes<HTMLDivElement>>;
export { CardAccordation };
export type { CardAccordationProps };
//# sourceMappingURL=Accordation.d.ts.map