export interface IPreviewOptions {
    /**
     * Index of printArea to get preview of. If set, the size of the resulting preview
     * will be equal to the bounds of the corresponding printArea.
     * */
    printAreaIndex?: number;
    /**
     * Array of container IDs to exclude from the preview.
     * */
    ignoreContainers?: string[];
    /**
     * Indicates whether mockup should be present on preview or not. If set, the size of the resulting preview
     * will be equal to the size of the whole surface, regardless of the printAreaIndex property.
     * */
    includeMockup?: boolean;
}
