export type { ImageMetadata, ImageSources } from '@datamodels/identity-profile-basic';
export declare type Dimensions = {
    height: number;
    width: number;
};
export declare type SizedImage = Dimensions & {
    blob: Blob;
};
/**
 * Image size modes:
 *
 * - "contain" = the image fits in the container
 * - "cover" = the image fills the container
 */
export declare type SizeMode = 'contain' | 'cover';
