export declare type OpenWindowOptions = {
    width?: number;
    height?: number;
    top?: number;
    left?: number;
    fullscreen?: 1 | 0 | 'yes' | 'no';
    location?: 1 | 0 | 'yes' | 'no';
    menubar?: 1 | 0 | 'yes' | 'no';
    resizable?: 1 | 0 | 'yes' | 'no';
    scrollbars?: 1 | 0 | 'yes' | 'no';
    status?: 1 | 0 | 'yes' | 'no';
    titlebar?: 1 | 0 | 'yes' | 'no';
    toolbar?: 1 | 0 | 'yes' | 'no';
};
