/**
 * Describes how the image should be aligned if it must be cropped or if using repeat fill mode.
 */
type HorizontalAlignment = 'left' | 'center' | 'right';

export type { HorizontalAlignment };
