/// interface Props { value: number; fontFamily: string; id: string; onUpdate: (newData: string) => void; label?: string; } export declare const FontWeightPicker: ({ label, value, fontFamily, id, onUpdate }: Props) => JSX.Element; export {};