import React from "react";
interface AccordionProps {
title: string;
children: React.ReactNode;
headerColor: string;
color?: string;
}
export declare function StkAccordion({ title, children, headerColor, color }: AccordionProps): React.JSX.Element;
export {};