import React from 'react'; declare type CollapsibleMainProps = { children: React.ReactNode[] | React.ReactNode; className?: string; cursor?: string; dark?: boolean; onClick?: () => void; }; declare const CollapsibleMain: ({ children, className, cursor, ...props }: CollapsibleMainProps) => React.ReactElement; export default CollapsibleMain;