import React from 'react'; export interface IViewHeader { children?: any; className?: string; sticky?: boolean; title?: string; [x: string]: any; } export declare const ViewHeader: React.FC;