export declare enum TransformationTokenType { Width = "w", Height = "h", Quality = "q", Rotation = "r", Focus = "f", Output = "o" } export declare enum TransformationFocusType { TopLeft = "top_left", Top = "top", TopRight = "top_right", Right = "right", BottomRight = "bottom_right", Bottom = "bottom", BottomLeft = "bottom_left", Left = "left", Center = "center", AutoEntropy = "auto_entropy", AutoAttention = "auto_attention" } export declare enum TransformationRotation { Auto = "auto", Rotate0 = "0", Rotate90 = "90", Rotate180 = "180", Rotate270 = "270" } export interface Transformation { width?: number; height?: number; quality?: number; rotation?: TransformationRotation; focus?: { x: number; y: number; scale: number; } | TransformationFocusType; output?: string; } export declare function transformationFromString(str: string): Transformation; export declare function transformationToString(transformation: Transformation): string; //# sourceMappingURL=transformation.d.ts.map