import React from "react";
import { VibeComponentProps, ElementContent } from "../../../types";
export interface AccordionItemProps extends VibeComponentProps {
    /**
     * Header title
     */
    title?: ElementContent;
    /**
     * The value of the expandable section
     */
    children?: ElementContent;
    /**
     * The expand icon font size
     */
    iconSize?: number | string;
    /**
     * On click callback
     */
    onClick?: () => void;
    open?: boolean;
    onClickAccordionCallback?: () => void;
    hideBorder?: boolean;
    headerClassName?: string;
    contentClassName?: string;
    expandCollapseComponentClassName?: string;
    captureOnClick?: boolean;
}
declare const AccordionItem: React.FC<AccordionItemProps>;
export default AccordionItem;
