import { Stroke } from "../../stroke.js"; import { FontInterface, StrokeDrawer } from "../index.js"; import { KShotai } from "../shotai.js"; import Mincho from "../mincho/index.js"; /** Gothic-style font (ゴシック体). */ declare class Gothic extends Mincho implements FontInterface { readonly shotai: KShotai; /** @internal */ getDrawers(strokesArray: Stroke[]): StrokeDrawer[]; } export default Gothic;