import * as React from 'react';
import { DialogProps, DialogRefType } from './Dialog';
/**
 * This is the main popup that we use - so all function popups will appear here.
 */
export interface IPopupWithFooterProps extends DialogProps {
    showModal: boolean;
    onHide?: () => void;
    modal?: boolean;
    maxWidth?: number;
    footer: React.ReactNode;
    children: React.ReactNode;
}
export declare const PopupWithFooter: React.ForwardRefExoticComponent<IPopupWithFooterProps & React.RefAttributes<DialogRefType>>;
