import { Context } from '../context'; import { Node } from '../node'; export declare const getFocalPoint: (media: Node) => string; export declare const getAltText: (ctx: Context, image: Node) => string; export declare const computeAltTextFromContentItemFields: (item: Node) => string; export declare const humanizeDatePlural: (value: number, type: string) => string; export declare const humanizeDate: (delta: number, showSeconds: boolean) => string; export declare const isLicensedAssetPreview: (image: Node) => boolean; export declare const outputImageMeta: (image: Node, ctx: Context, preferredAlt?: string) => string; export declare const splitDimensions: (node: Node) => string[] | null;