import React, { Component } from 'react'; import { ModalProps } from './utilities/modals'; import { TooltipLength } from './tooltip'; export interface FullScreenModelProps extends ModalProps { children?: React.ReactNode; className?: string; creditsCount?: string; hasPadding?: boolean; isOpen?: boolean; onClose?: (event: any) => void; modalContainer?: Element; renderHeaderActions?: () => React.ReactNode; headerTabs?: React.ReactNode; title: string; tooltipText?: string; tooltipLength?: TooltipLength; scrollContainerRef?: React.MutableRefObject; } export declare class FullscreenModal extends Component { static defaultProps: Partial; componentDidUpdate(prevProps: FullScreenModelProps): void; render(): React.ReactPortal; } export default FullscreenModal;