import type { ReadOnlyOption } from '../inputs/dropdown'; export declare const availableWeightsData: (fontFamily: string) => { value: string; label: string; }[]; /** Finds font-weight closest to current selected font-weight when changing font-family */ export declare const getClosestWeightToCurrent: (weight: number, weightsData: ReadOnlyOption[]) => number;