/** * FontWeightExtension — inline mark that applies a font-weight via TextStyle. * * Commands: `setFontWeight(weight)`, `unsetFontWeight()`. */ import { Extension } from '@tiptap/core'; export interface FontWeightOptions { types: string[]; } declare module '@tiptap/core' { interface Commands { fontWeight: { setFontWeight: (weight: string) => ReturnType; unsetFontWeight: () => ReturnType; }; } } export declare const FontWeightExtension: Extension; //# sourceMappingURL=font-weight.d.ts.map