import React, { FC } from 'react'; export interface TakeoverHeaderPropsStrict { /** Content for Action area next to close button */ actions?: React.ReactElement; /** Adds one or more classnames to an element */ backLabel: string; /** Adds one or more classnames to an element */ className?: string; /** If passed an onBack function, gets a Back button in the top left */ onBack?: (e: React.SyntheticEvent) => void; /** If passed an onClose function, gets a Close button in the top right */ onClose?: (e: React.SyntheticEvent) => void; /** Theme of Takeover */ theme?: 'dark' | 'light'; /** Name of Takeover */ title: string | React.ReactElement; } export interface TakeoverHeaderProps extends TakeoverHeaderPropsStrict { [propName: string]: any; } export declare const TakeoverHeader: FC;