import React from 'react'; import { HeaderPropsType } from './PropsType'; export interface HeaderProps extends HeaderPropsType { prefixCls?: string; className?: string; title?: string; style?: React.CSSProperties; onTitleClick?: any; } export declare class TitleArea extends React.Component { handleItemClick: (e: any) => void; render(): JSX.Element; } export declare class Item extends React.Component { static defaultProps: HeaderProps; handleItemClick: (e: any) => void; render(): JSX.Element; } export default class Header extends React.Component { static Item: typeof Item; static LeftArea: (props: any) => JSX.Element; static TitleArea: typeof TitleArea; static RightArea: (props: any) => JSX.Element; onHandleTitleClick: (e: any) => void; render(): JSX.Element; }