import { ReactElement } from "react"; import { TextProps } from "../text/Text"; export interface CollapseProps { title: string | (() => ReactElement); titleProps?: Partial; initialOpen?: boolean; children: any; showArrow?: boolean; className?: string; [props: string]: any; } export declare const Collapse: ({ title: Title, titleProps, children, initialOpen, showArrow, className, ...props }: CollapseProps) => import("@emotion/react/jsx-runtime").JSX.Element;