// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IGroupProps { label?: string; borderColor?: string; style?: React.CSSProperties; titleStyle?: React.CSSProperties; contentStyle?: any; collapsed?: boolean; darkMode?: boolean; } export interface IGroupState { collapsed: boolean; } export class IAGroup extends React.Component { constructor(props: IGroupProps); componentWillReceiveProps(props: IGroupProps): void; componentDidMount(): void; render(): JSX.Element; }