/// <reference types="react" />
interface AccordionProps {
    title: string;
    titleColor?: string;
    titleBackground?: string;
    children: string | JSX.Element;
}
declare const Accordion: ({ title, titleColor, titleBackground, children }: AccordionProps) => JSX.Element;

export { Accordion };
