/// import * as pdfMake from 'pdfmake/build/pdfmake'; export declare type Stack = pdfMake.Content & { stack: pdfMake.Content[]; }; /** * Builds a PDF stack object. Elements in this stack will be laid out top to * bottom and by default will be left-aligned. * * @example * * // Renders "Name:" over a bold "Bob" * stack( * text('Name:'), * text('Bob', { bold: true }) * ) */ declare function stack(elements: pdfMake.Content[], style: pdfMake.Style): Stack; declare function stack(...elements: pdfMake.Content[]): Stack; export default stack; //# sourceMappingURL=stack.d.ts.map