import React, { ComponentPropsWithoutRef, PropsWithChildren } from 'react';
export type NJAccordionItemHeaderProps = PropsWithChildren & ComponentPropsWithoutRef<'div'>;
export declare const NJAccordionItemHeader: React.ForwardRefExoticComponent<{
    children?: React.ReactNode | undefined;
} & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLElement>>;
