UNPKG

214 BTypeScriptView Raw
1import * as React from 'react';
2export interface TitleProps {
3 className: string;
4 children: React.ReactNode;
5}
6declare function Panel({ className, children }: TitleProps): JSX.Element;
7export default Panel;