import * as React from "react"; interface Props { action: any; description: string; icon: any; title: string; } export default class MagaHeader extends React.Component { static defaultProps: { action: string; description: string; icon: string; title: string; }; render(): JSX.Element; } export {};