import React, { FC, ReactNode } from 'react'; export interface BlockPanelProps { children?: ReactNode; color?: string; controls?: ReactNode; className?: string; expandable?: boolean; headerClassName?: string; hideOnToggle?: boolean; onEdit?: (event: React.MouseEvent) => void; onToggle?: (willOpen?: boolean) => void; open?: boolean; title?: ReactNode; stickyId?: string; bodyClassName?: string; } /** * BlockPanel is an extension to Bootstrap Card, which allows for expand/collapse and standardized header. */ declare const BlockPanel: FC; export default BlockPanel;