/** * Convert media node width to pixel * * for legacy experience, image is aligned inside resize handle bar with a gap. So gutterOffset is used to for this use case. * for new experience, image is aligned with resize handle bar, so gutterOffset is 0 * * @param width - media single node width * @param editorWidth - width of editor * @param widthType - width type is defined in the adf document for mediaSingle node, and it is associated with the `width` * @param gutterOffset - resize handle bar offset, determines whether align with resize handle bar * @returns pixel number for media single node */ export declare function getMediaSinglePixelWidth(width: number, editorWidth: number, widthType?: string, gutterOffset?: number): number;