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

export type { VerticalAlignment };
