/// export interface TypesettingProps { width: number; height: number; fontSize: number; fontFamily: string; fontWeight: string | number; lineHeight: number; value: string; color?: string; textAnchor?: 'start' | 'middle' | 'end'; onChange: ({ value, svg }: { svg: string; value: string; }) => void; badWords: string[]; } declare const Typesetting: ({ width, height, fontSize, fontWeight, fontFamily, lineHeight, color, badWords, value, textAnchor, onChange }: TypesettingProps) => JSX.Element; export default Typesetting;