UNPKG

react-accordion-ts

Version:
13 lines (12 loc) 346 B
import * as React from 'react'; export interface PanelProps { open?: boolean; index: number; title: React.ReactNode; duration: number; multiple: boolean; children?: React.ReactNode; activeTab: number; activatePanel(index: number): void; } export declare const Panel: React.FunctionComponent<Readonly<PanelProps>>;