import { Style } from '@react-pdf/types'; import { Tag } from './tags.js'; export type HtmlStyle = (Style & { listStyle?: string; listStyleType?: string; borderSpacing?: number | string; borderCollapse?: string; }) | any; export type HtmlStyles = Record; export declare const createHtmlStylesheet: (fontSize: number, reset?: boolean) => HtmlStyles;