import { InputTemplate, SubsetResult } from '../interface'; import type { NameTable } from './reporter'; export declare const isItalic: (str: string) => boolean; export declare const createCSS: (subsetResult: SubsetResult, nameTable: { windows?: NameTable; macintosh?: NameTable; }, opts: InputTemplate['css']) => { css: string; family: string; style: string; weight: string | number | undefined; display: string; };