import React, { ReactNode } from "react"; declare const ROUNDED: { sm: string; base: string; lg: string; }; export declare type CaPanelProps = { title?: ReactNode; additionalTitle?: ReactNode; children: React.ReactNode; className?: string; noPadding?: boolean; rounded?: keyof typeof ROUNDED; onClose?: () => void; }; export declare function CaPanel({ title, children, className, additionalTitle, noPadding, rounded, onClose, }: CaPanelProps): JSX.Element; export default CaPanel;