/** * Returns the full document size. * * @returns The document width and height. * * @example * getDocumentSize() * // => { width: 1440, height: 3200 } * * @since 1.0.0 */ declare const getDocumentSize: () => { width: number; height: number; }; export default getDocumentSize;