import * as React from 'react';
interface Props {
    header?: React.ReactElement;
    wide?: boolean;
    narrow?: boolean;
    children: React.ReactNode | ((width: number) => React.ReactNode);
}
export declare const SizerBigModal: React.FC<Props>;
export {};
