import { BoxProps } from 'grommet'; import React from 'react'; export interface HeaderProps { title?: any; action?: any; onActionClick?: () => void; justify?: BoxProps["justify"]; } export declare const Header: React.FC;