// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IWebpartIntroProps { text: string; icon: string; description?: string; className?: string; style?: React.CSSProperties; onChange: (text: string) => void; } export interface IWebpartIntroState { text: string; } export class IAWebpartIntro extends React.Component { constructor(props: IWebpartIntroProps); componentWillReceiveProps(props: IWebpartIntroProps): void; render(): JSX.Element; }