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