UNPKG

matrix-react-sdk

Version:
20 lines (19 loc) 543 B
import React, { ReactNode } from 'react'; import { RightPanelPhases } from "../../../stores/RightPanelStorePhases"; interface IProps { header?: ReactNode; footer?: ReactNode; className?: string; withoutScrollContainer?: boolean; previousPhase?: RightPanelPhases; closeLabel?: string; onClose?(): void; refireParams?: any; } interface IGroupProps { className?: string; title: string; } export declare const Group: React.FC<IGroupProps>; declare const BaseCard: React.FC<IProps>; export default BaseCard;