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;
