export declare const getMiddlePosition: (size: {
    width: number;
    height: number;
}) => {
    x: number;
    y: number;
};
export declare const getActionPanelSize: () => {
    height: number;
    width: number;
};
export declare const getSettingsPanelSize: () => {
    height: number;
    width: number;
};
/**
 * Default size for the One Page Wizard when it renders as a window (i.e.
 * `wizardOptions.popupType === 'window'` and the user has not provided an
 * explicit `wizardOptions.size`). Mirrors the historical modal sizing of
 * 90vh tall and 90vw wide, capped at 1200px wide so the wizard stays
 * readable on very large monitors.
 */
export declare const getWizardSize: () => {
    height: number;
    width: number;
};
export declare const getWindowPopupSize: () => {
    height: number;
    width: number;
};
