import type { Dimensions } from '../types/dimensions.js'; /** A function that returns the size of a given text with font styles applied in fontsize 10 */ export declare const measureFontBaseline: ({ text, fontStyle, fontWeight, fontFamily, }: { fontStyle: string; fontWeight: string; fontFamily: string; text: string; }) => Dimensions | undefined;