/** * Calculate initial media single pixel width. * Make it fall between max width and min width * @param origWidth original width of image (media node width) * @param maxWidth default to akEditorDefaultLayoutWidth (760) * @param minWidth default to MEDIA_SINGLE_DEFAULT_MIN_PIXEL_WIDTH (24) */ export declare const getMediaSingleInitialWidth: (origWidth?: number, maxWidth?: number, minWidth?: number) => number;