tdesign-react
Version:
TDesign Component for React
10 lines (9 loc) • 338 B
TypeScript
import React from 'react';
import { TdCollapsePanelProps } from './type';
import { StyledProps } from '../common';
export interface CollapsePanelProps extends TdCollapsePanelProps, StyledProps {
children?: React.ReactNode;
index?: number;
}
declare const CollapsePanel: React.FC<CollapsePanelProps>;
export default CollapsePanel;