import React from 'react';
export type NJAccordionProps = React.PropsWithChildren & React.ComponentPropsWithoutRef<'div'> & {
    /**
     * Whether the item border should be removed
     */
    withoutBorder?: boolean;
    /**
     * Whether the item are separated by a space
     */
    isSeparated?: boolean;
};
export declare const NJAccordion: React.ForwardRefExoticComponent<{
    children?: React.ReactNode | undefined;
} & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
    /**
     * Whether the item border should be removed
     */
    withoutBorder?: boolean;
    /**
     * Whether the item are separated by a space
     */
    isSeparated?: boolean;
} & React.RefAttributes<HTMLDivElement>>;
