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