matrix-react-sdk
Version:
SDK for matrix.org using React
20 lines (19 loc) • 543 B
TypeScript
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;