import { TableOfContent } from 'pdfmake/interfaces.js'; import { Points, TextProps } from './props.types.js'; export declare type TocTitle = TextProps & { text: string; style?: string; margin?: Points; }; export declare type TocDefinition = TableOfContent & { title?: TocTitle; };