/// import { PB_FONT_FAMILY, PB_FONT_SIZE, PB_FONT_WEIGHT } from './types'; declare type Props = { id: string; onUpdate: (id: string, field: string, value: string) => void; fontSize?: PB_FONT_SIZE; textStyle?: PB_FONT_WEIGHT; textFont?: PB_FONT_FAMILY; italic?: boolean; }; declare const TextFormating: ({ id, onUpdate, fontSize, textStyle, textFont, italic, }: Props) => JSX.Element; export default TextFormating;