import * as zod from 'zod';
import { z } from 'zod';
import ICloudinaryConfigurations from '@cloudinary/url-gen/config/interfaces/Config/ICloudinaryConfigurations';
import { IAnalyticsOptions } from '@cloudinary/url-gen/sdkAnalytics/interfaces/IAnalyticsOptions';

interface CloudinaryConfigurationOptions extends ICloudinaryConfigurations {
}
declare const configOptionsSchema: z.ZodType<CloudinaryConfigurationOptions>;
type ConfigOptions = z.TypeOf<typeof configOptionsSchema>;

interface CloudinaryAnalyticsOptions extends IAnalyticsOptions {
}
declare const analyticsOptionsSchema: z.ZodType<CloudinaryAnalyticsOptions>;
type AnalyticsOptions = z.TypeOf<typeof analyticsOptionsSchema> | false;

declare const videoOptionsSchema: z.ZodObject<{
    crop: z.ZodOptional<z.ZodDefault<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>>;
    sanitize: z.ZodOptional<z.ZodBoolean>;
    assetType: z.ZodOptional<z.ZodDefault<z.ZodString>>;
    deliveryType: z.ZodOptional<z.ZodDefault<z.ZodString>>;
    dpr: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
    format: z.ZodOptional<z.ZodDefault<z.ZodString>>;
    height: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
    quality: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
    src: z.ZodString;
    strictTransformations: z.ZodOptional<z.ZodBoolean>;
    width: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
    art: any;
    autoBrightness: any;
    autoColor: any;
    autoContrast: any;
    assistColorblind: any;
    background: any;
    blackwhite: any;
    blur: any;
    blurFaces: any;
    blurRegion: any;
    border: any;
    brightness: any;
    brightnessHSB: any;
    cartoonify: any;
    color: any;
    colorize: any;
    contrast: any;
    distort: any;
    fillLight: any;
    gamma: any;
    gradientFade: any;
    grayscale: any;
    improve: any;
    multiply: any;
    negate: any;
    oilPaint: any;
    opacity: any;
    outline: any;
    pixelate: any;
    pixelateFaces: any;
    pixelateRegion: any;
    radius: any;
    redeye: any;
    replaceColor: any;
    saturation: any;
    screen: any;
    sepia: any;
    shadow: any;
    sharpen: any;
    shear: any;
    simulateColorblind: any;
    tint: any;
    trim: any;
    unsharpMask: any;
    vectorize: any;
    vibrance: any;
    vignette: any;
    effects: z.ZodOptional<z.ZodArray<z.ZodObject<{
        art: any;
        autoBrightness: any;
        autoColor: any;
        autoContrast: any;
        assistColorblind: any;
        background: any;
        blackwhite: any;
        blur: any;
        blurFaces: any;
        blurRegion: any;
        border: any;
        brightness: any;
        brightnessHSB: any;
        cartoonify: any;
        color: any;
        colorize: any;
        contrast: any;
        distort: any;
        fillLight: any;
        gamma: any;
        gradientFade: any;
        grayscale: any;
        improve: any;
        multiply: any;
        negate: any;
        oilPaint: any;
        opacity: any;
        outline: any;
        pixelate: any;
        pixelateFaces: any;
        pixelateRegion: any;
        radius: any;
        redeye: any;
        replaceColor: any;
        saturation: any;
        screen: any;
        sepia: any;
        shadow: any;
        sharpen: any;
        shear: any;
        simulateColorblind: any;
        tint: any;
        trim: any;
        unsharpMask: any;
        vectorize: any;
        vibrance: any;
        vignette: any;
    }, "strip", z.ZodTypeAny, {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }, {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }>, "many">>;
    flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
    gravity: z.ZodOptional<z.ZodString>;
    text: z.ZodOptional<z.ZodString>;
    version: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    underlay: z.ZodOptional<z.ZodString>;
    underlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
        appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        position: z.ZodOptional<z.ZodObject<{
            angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            gravity: z.ZodOptional<z.ZodString>;
            x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        }, "strip", z.ZodTypeAny, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }>>;
        publicId: z.ZodOptional<z.ZodString>;
        type: z.ZodOptional<z.ZodString>;
        url: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    }, "strip", z.ZodTypeAny, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }>, "many">>;
    seoSuffix: z.ZodOptional<z.ZodString>;
    removeBackground: z.ZodOptional<z.ZodBoolean>;
    rawTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
    overlay: z.ZodOptional<z.ZodObject<{
        appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        position: z.ZodOptional<z.ZodObject<{
            angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            gravity: z.ZodOptional<z.ZodString>;
            x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        }, "strip", z.ZodTypeAny, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }>>;
        publicId: z.ZodOptional<z.ZodString>;
        text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
            alignment: z.ZodOptional<z.ZodString>;
            antialias: z.ZodOptional<z.ZodString>;
            border: z.ZodOptional<z.ZodString>;
            color: z.ZodOptional<z.ZodString>;
            fontFamily: z.ZodOptional<z.ZodString>;
            fontSize: z.ZodOptional<z.ZodNumber>;
            fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            fontWeight: z.ZodOptional<z.ZodString>;
            hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            stroke: z.ZodOptional<z.ZodString>;
            text: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }>]>>;
        url: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    }, "strip", z.ZodTypeAny, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }>>;
    overlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
        appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        position: z.ZodOptional<z.ZodObject<{
            angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            gravity: z.ZodOptional<z.ZodString>;
            x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        }, "strip", z.ZodTypeAny, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }>>;
        publicId: z.ZodOptional<z.ZodString>;
        text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
            alignment: z.ZodOptional<z.ZodString>;
            antialias: z.ZodOptional<z.ZodString>;
            border: z.ZodOptional<z.ZodString>;
            color: z.ZodOptional<z.ZodString>;
            fontFamily: z.ZodOptional<z.ZodString>;
            fontSize: z.ZodOptional<z.ZodNumber>;
            fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            fontWeight: z.ZodOptional<z.ZodString>;
            hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            stroke: z.ZodOptional<z.ZodString>;
            text: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }>]>>;
        url: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    }, "strip", z.ZodTypeAny, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }>, "many">>;
    namedTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
    transformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
    aspectRatio: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodEnum<["vflip", "hflip", "ignore", "auto_right", "auto_left"]>, z.ZodString]>>;
    widthResize: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
    zoom: z.ZodOptional<z.ZodString>;
    streamingProfile: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    src: string;
    crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
    sanitize?: boolean | undefined;
    assetType?: string | undefined;
    deliveryType?: string | undefined;
    dpr?: string | number | undefined;
    format?: string | undefined;
    height?: string | number | undefined;
    quality?: string | number | undefined;
    strictTransformations?: boolean | undefined;
    width?: string | number | undefined;
    art?: any;
    autoBrightness?: any;
    autoColor?: any;
    autoContrast?: any;
    assistColorblind?: any;
    background?: any;
    blackwhite?: any;
    blur?: any;
    blurFaces?: any;
    blurRegion?: any;
    border?: any;
    brightness?: any;
    brightnessHSB?: any;
    cartoonify?: any;
    color?: any;
    colorize?: any;
    contrast?: any;
    distort?: any;
    fillLight?: any;
    gamma?: any;
    gradientFade?: any;
    grayscale?: any;
    improve?: any;
    multiply?: any;
    negate?: any;
    oilPaint?: any;
    opacity?: any;
    outline?: any;
    pixelate?: any;
    pixelateFaces?: any;
    pixelateRegion?: any;
    radius?: any;
    redeye?: any;
    replaceColor?: any;
    saturation?: any;
    screen?: any;
    sepia?: any;
    shadow?: any;
    sharpen?: any;
    shear?: any;
    simulateColorblind?: any;
    tint?: any;
    trim?: any;
    unsharpMask?: any;
    vectorize?: any;
    vibrance?: any;
    vignette?: any;
    effects?: {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }[] | undefined;
    flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
    gravity?: string | undefined;
    text?: string | undefined;
    version?: string | number | undefined;
    underlay?: string | undefined;
    underlays?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }[] | undefined;
    seoSuffix?: string | undefined;
    removeBackground?: boolean | undefined;
    rawTransformations?: string | string[] | undefined;
    overlay?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    } | undefined;
    overlays?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }[] | undefined;
    namedTransformations?: string | string[] | undefined;
    transformations?: string | string[] | undefined;
    aspectRatio?: string | number | undefined;
    widthResize?: string | number | undefined;
    zoom?: string | undefined;
    streamingProfile?: string | undefined;
}, {
    src: string;
    crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
    sanitize?: boolean | undefined;
    assetType?: string | undefined;
    deliveryType?: string | undefined;
    dpr?: string | number | undefined;
    format?: string | undefined;
    height?: string | number | undefined;
    quality?: string | number | undefined;
    strictTransformations?: boolean | undefined;
    width?: string | number | undefined;
    art?: any;
    autoBrightness?: any;
    autoColor?: any;
    autoContrast?: any;
    assistColorblind?: any;
    background?: any;
    blackwhite?: any;
    blur?: any;
    blurFaces?: any;
    blurRegion?: any;
    border?: any;
    brightness?: any;
    brightnessHSB?: any;
    cartoonify?: any;
    color?: any;
    colorize?: any;
    contrast?: any;
    distort?: any;
    fillLight?: any;
    gamma?: any;
    gradientFade?: any;
    grayscale?: any;
    improve?: any;
    multiply?: any;
    negate?: any;
    oilPaint?: any;
    opacity?: any;
    outline?: any;
    pixelate?: any;
    pixelateFaces?: any;
    pixelateRegion?: any;
    radius?: any;
    redeye?: any;
    replaceColor?: any;
    saturation?: any;
    screen?: any;
    sepia?: any;
    shadow?: any;
    sharpen?: any;
    shear?: any;
    simulateColorblind?: any;
    tint?: any;
    trim?: any;
    unsharpMask?: any;
    vectorize?: any;
    vibrance?: any;
    vignette?: any;
    effects?: {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }[] | undefined;
    flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
    gravity?: string | undefined;
    text?: string | undefined;
    version?: string | number | undefined;
    underlay?: string | undefined;
    underlays?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }[] | undefined;
    seoSuffix?: string | undefined;
    removeBackground?: boolean | undefined;
    rawTransformations?: string | string[] | undefined;
    overlay?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    } | undefined;
    overlays?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }[] | undefined;
    namedTransformations?: string | string[] | undefined;
    transformations?: string | string[] | undefined;
    aspectRatio?: string | number | undefined;
    widthResize?: string | number | undefined;
    zoom?: string | undefined;
    streamingProfile?: string | undefined;
}>;
type VideoOptions = z.infer<typeof videoOptionsSchema>;

declare const assetOptionsSchema: z.ZodObject<{
    version: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    underlay: z.ZodOptional<z.ZodString>;
    underlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
        appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        position: z.ZodOptional<z.ZodObject<{
            angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            gravity: z.ZodOptional<z.ZodString>;
            x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        }, "strip", z.ZodTypeAny, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }>>;
        publicId: z.ZodOptional<z.ZodString>;
        type: z.ZodOptional<z.ZodString>;
        url: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    }, "strip", z.ZodTypeAny, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }>, "many">>;
    seoSuffix: z.ZodOptional<z.ZodString>;
    sanitize: z.ZodOptional<z.ZodBoolean>;
    removeBackground: z.ZodOptional<z.ZodBoolean>;
    rawTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
    overlay: z.ZodOptional<z.ZodObject<{
        appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        position: z.ZodOptional<z.ZodObject<{
            angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            gravity: z.ZodOptional<z.ZodString>;
            x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        }, "strip", z.ZodTypeAny, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }>>;
        publicId: z.ZodOptional<z.ZodString>;
        text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
            alignment: z.ZodOptional<z.ZodString>;
            antialias: z.ZodOptional<z.ZodString>;
            border: z.ZodOptional<z.ZodString>;
            color: z.ZodOptional<z.ZodString>;
            fontFamily: z.ZodOptional<z.ZodString>;
            fontSize: z.ZodOptional<z.ZodNumber>;
            fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            fontWeight: z.ZodOptional<z.ZodString>;
            hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            stroke: z.ZodOptional<z.ZodString>;
            text: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }>]>>;
        url: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    }, "strip", z.ZodTypeAny, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }>>;
    overlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
        appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        position: z.ZodOptional<z.ZodObject<{
            angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            gravity: z.ZodOptional<z.ZodString>;
            x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        }, "strip", z.ZodTypeAny, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }>>;
        publicId: z.ZodOptional<z.ZodString>;
        text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
            alignment: z.ZodOptional<z.ZodString>;
            antialias: z.ZodOptional<z.ZodString>;
            border: z.ZodOptional<z.ZodString>;
            color: z.ZodOptional<z.ZodString>;
            fontFamily: z.ZodOptional<z.ZodString>;
            fontSize: z.ZodOptional<z.ZodNumber>;
            fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            fontWeight: z.ZodOptional<z.ZodString>;
            hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            stroke: z.ZodOptional<z.ZodString>;
            text: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }>]>>;
        url: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    }, "strip", z.ZodTypeAny, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }>, "many">>;
    text: z.ZodOptional<z.ZodString>;
    namedTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
    transformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
    flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
    art: any;
    autoBrightness: any;
    autoColor: any;
    autoContrast: any;
    assistColorblind: any;
    background: any;
    blackwhite: any;
    blur: any;
    blurFaces: any;
    blurRegion: any;
    border: any;
    brightness: any;
    brightnessHSB: any;
    cartoonify: any;
    color: any;
    colorize: any;
    contrast: any;
    distort: any;
    fillLight: any;
    gamma: any;
    gradientFade: any;
    grayscale: any;
    improve: any;
    multiply: any;
    negate: any;
    oilPaint: any;
    opacity: any;
    outline: any;
    pixelate: any;
    pixelateFaces: any;
    pixelateRegion: any;
    radius: any;
    redeye: any;
    replaceColor: any;
    saturation: any;
    screen: any;
    sepia: any;
    shadow: any;
    sharpen: any;
    shear: any;
    simulateColorblind: any;
    tint: any;
    trim: any;
    unsharpMask: any;
    vectorize: any;
    vibrance: any;
    vignette: any;
    effects: z.ZodOptional<z.ZodArray<z.ZodObject<{
        art: any;
        autoBrightness: any;
        autoColor: any;
        autoContrast: any;
        assistColorblind: any;
        background: any;
        blackwhite: any;
        blur: any;
        blurFaces: any;
        blurRegion: any;
        border: any;
        brightness: any;
        brightnessHSB: any;
        cartoonify: any;
        color: any;
        colorize: any;
        contrast: any;
        distort: any;
        fillLight: any;
        gamma: any;
        gradientFade: any;
        grayscale: any;
        improve: any;
        multiply: any;
        negate: any;
        oilPaint: any;
        opacity: any;
        outline: any;
        pixelate: any;
        pixelateFaces: any;
        pixelateRegion: any;
        radius: any;
        redeye: any;
        replaceColor: any;
        saturation: any;
        screen: any;
        sepia: any;
        shadow: any;
        sharpen: any;
        shear: any;
        simulateColorblind: any;
        tint: any;
        trim: any;
        unsharpMask: any;
        vectorize: any;
        vibrance: any;
        vignette: any;
    }, "strip", z.ZodTypeAny, {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }, {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }>, "many">>;
    aspectRatio: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodEnum<["vflip", "hflip", "ignore", "auto_right", "auto_left"]>, z.ZodString]>>;
    crop: z.ZodOptional<z.ZodDefault<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>>;
    gravity: z.ZodOptional<z.ZodString>;
    widthResize: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
    zoom: z.ZodOptional<z.ZodString>;
    assetType: z.ZodOptional<z.ZodDefault<z.ZodString>>;
    deliveryType: z.ZodOptional<z.ZodDefault<z.ZodString>>;
    dpr: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
    format: z.ZodOptional<z.ZodDefault<z.ZodString>>;
    height: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
    quality: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
    src: z.ZodString;
    strictTransformations: z.ZodOptional<z.ZodBoolean>;
    width: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
}, "strip", z.ZodTypeAny, {
    src: string;
    version?: string | number | undefined;
    underlay?: string | undefined;
    underlays?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }[] | undefined;
    seoSuffix?: string | undefined;
    sanitize?: boolean | undefined;
    removeBackground?: boolean | undefined;
    rawTransformations?: string | string[] | undefined;
    overlay?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    } | undefined;
    overlays?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }[] | undefined;
    text?: string | undefined;
    namedTransformations?: string | string[] | undefined;
    transformations?: string | string[] | undefined;
    flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
    art?: any;
    autoBrightness?: any;
    autoColor?: any;
    autoContrast?: any;
    assistColorblind?: any;
    background?: any;
    blackwhite?: any;
    blur?: any;
    blurFaces?: any;
    blurRegion?: any;
    border?: any;
    brightness?: any;
    brightnessHSB?: any;
    cartoonify?: any;
    color?: any;
    colorize?: any;
    contrast?: any;
    distort?: any;
    fillLight?: any;
    gamma?: any;
    gradientFade?: any;
    grayscale?: any;
    improve?: any;
    multiply?: any;
    negate?: any;
    oilPaint?: any;
    opacity?: any;
    outline?: any;
    pixelate?: any;
    pixelateFaces?: any;
    pixelateRegion?: any;
    radius?: any;
    redeye?: any;
    replaceColor?: any;
    saturation?: any;
    screen?: any;
    sepia?: any;
    shadow?: any;
    sharpen?: any;
    shear?: any;
    simulateColorblind?: any;
    tint?: any;
    trim?: any;
    unsharpMask?: any;
    vectorize?: any;
    vibrance?: any;
    vignette?: any;
    effects?: {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }[] | undefined;
    aspectRatio?: string | number | undefined;
    crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
    gravity?: string | undefined;
    widthResize?: string | number | undefined;
    zoom?: string | undefined;
    assetType?: string | undefined;
    deliveryType?: string | undefined;
    dpr?: string | number | undefined;
    format?: string | undefined;
    height?: string | number | undefined;
    quality?: string | number | undefined;
    strictTransformations?: boolean | undefined;
    width?: string | number | undefined;
}, {
    src: string;
    version?: string | number | undefined;
    underlay?: string | undefined;
    underlays?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }[] | undefined;
    seoSuffix?: string | undefined;
    sanitize?: boolean | undefined;
    removeBackground?: boolean | undefined;
    rawTransformations?: string | string[] | undefined;
    overlay?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    } | undefined;
    overlays?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }[] | undefined;
    text?: string | undefined;
    namedTransformations?: string | string[] | undefined;
    transformations?: string | string[] | undefined;
    flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
    art?: any;
    autoBrightness?: any;
    autoColor?: any;
    autoContrast?: any;
    assistColorblind?: any;
    background?: any;
    blackwhite?: any;
    blur?: any;
    blurFaces?: any;
    blurRegion?: any;
    border?: any;
    brightness?: any;
    brightnessHSB?: any;
    cartoonify?: any;
    color?: any;
    colorize?: any;
    contrast?: any;
    distort?: any;
    fillLight?: any;
    gamma?: any;
    gradientFade?: any;
    grayscale?: any;
    improve?: any;
    multiply?: any;
    negate?: any;
    oilPaint?: any;
    opacity?: any;
    outline?: any;
    pixelate?: any;
    pixelateFaces?: any;
    pixelateRegion?: any;
    radius?: any;
    redeye?: any;
    replaceColor?: any;
    saturation?: any;
    screen?: any;
    sepia?: any;
    shadow?: any;
    sharpen?: any;
    shear?: any;
    simulateColorblind?: any;
    tint?: any;
    trim?: any;
    unsharpMask?: any;
    vectorize?: any;
    vibrance?: any;
    vignette?: any;
    effects?: {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }[] | undefined;
    aspectRatio?: string | number | undefined;
    crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
    gravity?: string | undefined;
    widthResize?: string | number | undefined;
    zoom?: string | undefined;
    assetType?: string | undefined;
    deliveryType?: string | undefined;
    dpr?: string | number | undefined;
    format?: string | undefined;
    height?: string | number | undefined;
    quality?: string | number | undefined;
    strictTransformations?: boolean | undefined;
    width?: string | number | undefined;
}>;
type AssetOptions = z.infer<typeof assetOptionsSchema>;

declare const imageOptionsSchema: z.ZodObject<{
    crop: z.ZodOptional<z.ZodDefault<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>>;
    sanitize: z.ZodOptional<z.ZodBoolean>;
    assetType: z.ZodOptional<z.ZodDefault<z.ZodString>>;
    deliveryType: z.ZodOptional<z.ZodDefault<z.ZodString>>;
    dpr: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
    format: z.ZodOptional<z.ZodDefault<z.ZodString>>;
    height: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
    quality: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
    src: z.ZodString;
    strictTransformations: z.ZodOptional<z.ZodBoolean>;
    width: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
    art: any;
    autoBrightness: any;
    autoColor: any;
    autoContrast: any;
    assistColorblind: any;
    background: any;
    blackwhite: any;
    blur: any;
    blurFaces: any;
    blurRegion: any;
    border: any;
    brightness: any;
    brightnessHSB: any;
    cartoonify: any;
    color: any;
    colorize: any;
    contrast: any;
    distort: any;
    fillLight: any;
    gamma: any;
    gradientFade: any;
    grayscale: any;
    improve: any;
    multiply: any;
    negate: any;
    oilPaint: any;
    opacity: any;
    outline: any;
    pixelate: any;
    pixelateFaces: any;
    pixelateRegion: any;
    radius: any;
    redeye: any;
    replaceColor: any;
    saturation: any;
    screen: any;
    sepia: any;
    shadow: any;
    sharpen: any;
    shear: any;
    simulateColorblind: any;
    tint: any;
    trim: any;
    unsharpMask: any;
    vectorize: any;
    vibrance: any;
    vignette: any;
    effects: z.ZodOptional<z.ZodArray<z.ZodObject<{
        art: any;
        autoBrightness: any;
        autoColor: any;
        autoContrast: any;
        assistColorblind: any;
        background: any;
        blackwhite: any;
        blur: any;
        blurFaces: any;
        blurRegion: any;
        border: any;
        brightness: any;
        brightnessHSB: any;
        cartoonify: any;
        color: any;
        colorize: any;
        contrast: any;
        distort: any;
        fillLight: any;
        gamma: any;
        gradientFade: any;
        grayscale: any;
        improve: any;
        multiply: any;
        negate: any;
        oilPaint: any;
        opacity: any;
        outline: any;
        pixelate: any;
        pixelateFaces: any;
        pixelateRegion: any;
        radius: any;
        redeye: any;
        replaceColor: any;
        saturation: any;
        screen: any;
        sepia: any;
        shadow: any;
        sharpen: any;
        shear: any;
        simulateColorblind: any;
        tint: any;
        trim: any;
        unsharpMask: any;
        vectorize: any;
        vibrance: any;
        vignette: any;
    }, "strip", z.ZodTypeAny, {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }, {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }>, "many">>;
    flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
    gravity: z.ZodOptional<z.ZodString>;
    text: z.ZodOptional<z.ZodString>;
    version: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    underlay: z.ZodOptional<z.ZodString>;
    underlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
        appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        position: z.ZodOptional<z.ZodObject<{
            angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            gravity: z.ZodOptional<z.ZodString>;
            x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        }, "strip", z.ZodTypeAny, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }>>;
        publicId: z.ZodOptional<z.ZodString>;
        type: z.ZodOptional<z.ZodString>;
        url: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    }, "strip", z.ZodTypeAny, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }>, "many">>;
    seoSuffix: z.ZodOptional<z.ZodString>;
    removeBackground: z.ZodOptional<z.ZodBoolean>;
    rawTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
    overlay: z.ZodOptional<z.ZodObject<{
        appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        position: z.ZodOptional<z.ZodObject<{
            angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            gravity: z.ZodOptional<z.ZodString>;
            x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        }, "strip", z.ZodTypeAny, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }>>;
        publicId: z.ZodOptional<z.ZodString>;
        text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
            alignment: z.ZodOptional<z.ZodString>;
            antialias: z.ZodOptional<z.ZodString>;
            border: z.ZodOptional<z.ZodString>;
            color: z.ZodOptional<z.ZodString>;
            fontFamily: z.ZodOptional<z.ZodString>;
            fontSize: z.ZodOptional<z.ZodNumber>;
            fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            fontWeight: z.ZodOptional<z.ZodString>;
            hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            stroke: z.ZodOptional<z.ZodString>;
            text: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }>]>>;
        url: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    }, "strip", z.ZodTypeAny, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }>>;
    overlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
        appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        position: z.ZodOptional<z.ZodObject<{
            angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            gravity: z.ZodOptional<z.ZodString>;
            x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        }, "strip", z.ZodTypeAny, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }>>;
        publicId: z.ZodOptional<z.ZodString>;
        text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
            alignment: z.ZodOptional<z.ZodString>;
            antialias: z.ZodOptional<z.ZodString>;
            border: z.ZodOptional<z.ZodString>;
            color: z.ZodOptional<z.ZodString>;
            fontFamily: z.ZodOptional<z.ZodString>;
            fontSize: z.ZodOptional<z.ZodNumber>;
            fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            fontWeight: z.ZodOptional<z.ZodString>;
            hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            stroke: z.ZodOptional<z.ZodString>;
            text: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }>]>>;
        url: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    }, "strip", z.ZodTypeAny, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }>, "many">>;
    namedTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
    transformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
    aspectRatio: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodEnum<["vflip", "hflip", "ignore", "auto_right", "auto_left"]>, z.ZodString]>>;
    widthResize: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
    zoom: z.ZodOptional<z.ZodString>;
    zoompan: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodObject<{
        loop: z.ZodUnion<[z.ZodString, z.ZodBoolean]>;
        options: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        options: string;
        loop: string | boolean;
    }, {
        options: string;
        loop: string | boolean;
    }>]>>;
    restore: z.ZodOptional<z.ZodBoolean>;
    replace: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodBoolean, "many">, z.ZodObject<{
        to: z.ZodString;
        from: z.ZodString;
        preserveGeometry: z.ZodOptional<z.ZodBoolean>;
    }, "strip", z.ZodTypeAny, {
        to: string;
        from: string;
        preserveGeometry?: boolean | undefined;
    }, {
        to: string;
        from: string;
        preserveGeometry?: boolean | undefined;
    }>]>>;
    remove: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
        prompt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        region: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
        multiple: z.ZodOptional<z.ZodBoolean>;
        removeShadow: z.ZodOptional<z.ZodBoolean>;
    }, "strip", z.ZodTypeAny, {
        prompt?: string | string[] | undefined;
        region?: number[] | number[][] | undefined;
        multiple?: boolean | undefined;
        removeShadow?: boolean | undefined;
    }, {
        prompt?: string | string[] | undefined;
        region?: number[] | number[][] | undefined;
        multiple?: boolean | undefined;
        removeShadow?: boolean | undefined;
    }>]>>;
    recolor: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
        prompt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        to: z.ZodOptional<z.ZodString>;
        multiple: z.ZodOptional<z.ZodBoolean>;
    }, "strip", z.ZodTypeAny, {
        prompt?: string | string[] | undefined;
        to?: string | undefined;
        multiple?: boolean | undefined;
    }, {
        prompt?: string | string[] | undefined;
        to?: string | undefined;
        multiple?: boolean | undefined;
    }>]>>;
    fillBackground: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        gravity: z.ZodOptional<z.ZodString>;
        prompt: z.ZodOptional<z.ZodString>;
    }, "strip", z.ZodTypeAny, {
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        gravity?: string | undefined;
        prompt?: string | undefined;
    }, {
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        gravity?: string | undefined;
        prompt?: string | undefined;
    }>]>>;
    defaultImage: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    src: string;
    crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
    sanitize?: boolean | undefined;
    assetType?: string | undefined;
    deliveryType?: string | undefined;
    dpr?: string | number | undefined;
    format?: string | undefined;
    height?: string | number | undefined;
    quality?: string | number | undefined;
    strictTransformations?: boolean | undefined;
    width?: string | number | undefined;
    art?: any;
    autoBrightness?: any;
    autoColor?: any;
    autoContrast?: any;
    assistColorblind?: any;
    background?: any;
    blackwhite?: any;
    blur?: any;
    blurFaces?: any;
    blurRegion?: any;
    border?: any;
    brightness?: any;
    brightnessHSB?: any;
    cartoonify?: any;
    color?: any;
    colorize?: any;
    contrast?: any;
    distort?: any;
    fillLight?: any;
    gamma?: any;
    gradientFade?: any;
    grayscale?: any;
    improve?: any;
    multiply?: any;
    negate?: any;
    oilPaint?: any;
    opacity?: any;
    outline?: any;
    pixelate?: any;
    pixelateFaces?: any;
    pixelateRegion?: any;
    radius?: any;
    redeye?: any;
    replaceColor?: any;
    saturation?: any;
    screen?: any;
    sepia?: any;
    shadow?: any;
    sharpen?: any;
    shear?: any;
    simulateColorblind?: any;
    tint?: any;
    trim?: any;
    unsharpMask?: any;
    vectorize?: any;
    vibrance?: any;
    vignette?: any;
    effects?: {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }[] | undefined;
    flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
    gravity?: string | undefined;
    text?: string | undefined;
    version?: string | number | undefined;
    underlay?: string | undefined;
    underlays?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }[] | undefined;
    seoSuffix?: string | undefined;
    removeBackground?: boolean | undefined;
    rawTransformations?: string | string[] | undefined;
    overlay?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    } | undefined;
    overlays?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }[] | undefined;
    namedTransformations?: string | string[] | undefined;
    transformations?: string | string[] | undefined;
    aspectRatio?: string | number | undefined;
    widthResize?: string | number | undefined;
    zoom?: string | undefined;
    zoompan?: string | boolean | {
        options: string;
        loop: string | boolean;
    } | undefined;
    restore?: boolean | undefined;
    replace?: string[] | boolean[] | {
        to: string;
        from: string;
        preserveGeometry?: boolean | undefined;
    } | undefined;
    remove?: string | string[] | {
        prompt?: string | string[] | undefined;
        region?: number[] | number[][] | undefined;
        multiple?: boolean | undefined;
        removeShadow?: boolean | undefined;
    } | undefined;
    recolor?: string | string[] | {
        prompt?: string | string[] | undefined;
        to?: string | undefined;
        multiple?: boolean | undefined;
    } | undefined;
    fillBackground?: boolean | {
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        gravity?: string | undefined;
        prompt?: string | undefined;
    } | undefined;
    defaultImage?: string | undefined;
}, {
    src: string;
    crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
    sanitize?: boolean | undefined;
    assetType?: string | undefined;
    deliveryType?: string | undefined;
    dpr?: string | number | undefined;
    format?: string | undefined;
    height?: string | number | undefined;
    quality?: string | number | undefined;
    strictTransformations?: boolean | undefined;
    width?: string | number | undefined;
    art?: any;
    autoBrightness?: any;
    autoColor?: any;
    autoContrast?: any;
    assistColorblind?: any;
    background?: any;
    blackwhite?: any;
    blur?: any;
    blurFaces?: any;
    blurRegion?: any;
    border?: any;
    brightness?: any;
    brightnessHSB?: any;
    cartoonify?: any;
    color?: any;
    colorize?: any;
    contrast?: any;
    distort?: any;
    fillLight?: any;
    gamma?: any;
    gradientFade?: any;
    grayscale?: any;
    improve?: any;
    multiply?: any;
    negate?: any;
    oilPaint?: any;
    opacity?: any;
    outline?: any;
    pixelate?: any;
    pixelateFaces?: any;
    pixelateRegion?: any;
    radius?: any;
    redeye?: any;
    replaceColor?: any;
    saturation?: any;
    screen?: any;
    sepia?: any;
    shadow?: any;
    sharpen?: any;
    shear?: any;
    simulateColorblind?: any;
    tint?: any;
    trim?: any;
    unsharpMask?: any;
    vectorize?: any;
    vibrance?: any;
    vignette?: any;
    effects?: {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }[] | undefined;
    flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
    gravity?: string | undefined;
    text?: string | undefined;
    version?: string | number | undefined;
    underlay?: string | undefined;
    underlays?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }[] | undefined;
    seoSuffix?: string | undefined;
    removeBackground?: boolean | undefined;
    rawTransformations?: string | string[] | undefined;
    overlay?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    } | undefined;
    overlays?: {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }[] | undefined;
    namedTransformations?: string | string[] | undefined;
    transformations?: string | string[] | undefined;
    aspectRatio?: string | number | undefined;
    widthResize?: string | number | undefined;
    zoom?: string | undefined;
    zoompan?: string | boolean | {
        options: string;
        loop: string | boolean;
    } | undefined;
    restore?: boolean | undefined;
    replace?: string[] | boolean[] | {
        to: string;
        from: string;
        preserveGeometry?: boolean | undefined;
    } | undefined;
    remove?: string | string[] | {
        prompt?: string | string[] | undefined;
        region?: number[] | number[][] | undefined;
        multiple?: boolean | undefined;
        removeShadow?: boolean | undefined;
    } | undefined;
    recolor?: string | string[] | {
        prompt?: string | string[] | undefined;
        to?: string | undefined;
        multiple?: boolean | undefined;
    } | undefined;
    fillBackground?: boolean | {
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        gravity?: string | undefined;
        prompt?: string | undefined;
    } | undefined;
    defaultImage?: string | undefined;
}>;
type ImageOptions = z.infer<typeof imageOptionsSchema>;

type AllOptions = AssetOptions | ImageOptions | VideoOptions;
interface PluginSettings<Options extends AllOptions = AllOptions> {
    cldAsset: any;
    options: Options;
}
interface PluginOverrides {
    format?: string;
    width?: number;
}

declare const props$i: {
    streamingProfile: z.ZodOptional<z.ZodString>;
};
declare const assetTypes$i: string[];
declare function plugin$i(props: PluginSettings<VideoOptions>): {};

declare namespace abrPlugin {
  export { assetTypes$i as assetTypes, plugin$i as plugin, props$i as props };
}

declare const props$h: {
    aspectRatio: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodEnum<["vflip", "hflip", "ignore", "auto_right", "auto_left"]>, zod.ZodString]>>;
    crop: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>>;
    gravity: zod.ZodOptional<zod.ZodString>;
    widthResize: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
    zoom: zod.ZodOptional<zod.ZodString>;
};
declare const assetTypes$h: string[];
/**
 * normalizeNumberParameter
 * @TODO: move into util
 */
declare function normalizeNumberParameter(param: number | string | undefined): number | undefined;
declare function plugin$h(props: PluginSettings): {
    options: PluginOverrides;
};

declare const croppingPlugin_normalizeNumberParameter: typeof normalizeNumberParameter;
declare namespace croppingPlugin {
  export { assetTypes$h as assetTypes, croppingPlugin_normalizeNumberParameter as normalizeNumberParameter, plugin$h as plugin, props$h as props };
}

declare const props$g: {
    defaultImage: z.ZodOptional<z.ZodString>;
};
declare const assetTypes$g: string[];
declare function plugin$g(props: PluginSettings<ImageOptions>): {};

declare namespace defaultImagePlugin {
  export { assetTypes$g as assetTypes, plugin$g as plugin, props$g as props };
}

declare const props$f: {
    art: any;
    autoBrightness: any;
    autoColor: any;
    autoContrast: any;
    assistColorblind: any;
    background: any;
    blackwhite: any;
    blur: any;
    blurFaces: any;
    blurRegion: any;
    border: any;
    brightness: any;
    brightnessHSB: any;
    cartoonify: any;
    color: any;
    colorize: any;
    contrast: any;
    distort: any;
    fillLight: any;
    gamma: any;
    gradientFade: any;
    grayscale: any;
    improve: any;
    multiply: any;
    negate: any;
    oilPaint: any;
    opacity: any;
    outline: any;
    pixelate: any;
    pixelateFaces: any;
    pixelateRegion: any;
    radius: any;
    redeye: any;
    replaceColor: any;
    saturation: any;
    screen: any;
    sepia: any;
    shadow: any;
    sharpen: any;
    shear: any;
    simulateColorblind: any;
    tint: any;
    trim: any;
    unsharpMask: any;
    vectorize: any;
    vibrance: any;
    vignette: any;
    effects: z.ZodOptional<z.ZodArray<z.ZodObject<{
        art: any;
        autoBrightness: any;
        autoColor: any;
        autoContrast: any;
        assistColorblind: any;
        background: any;
        blackwhite: any;
        blur: any;
        blurFaces: any;
        blurRegion: any;
        border: any;
        brightness: any;
        brightnessHSB: any;
        cartoonify: any;
        color: any;
        colorize: any;
        contrast: any;
        distort: any;
        fillLight: any;
        gamma: any;
        gradientFade: any;
        grayscale: any;
        improve: any;
        multiply: any;
        negate: any;
        oilPaint: any;
        opacity: any;
        outline: any;
        pixelate: any;
        pixelateFaces: any;
        pixelateRegion: any;
        radius: any;
        redeye: any;
        replaceColor: any;
        saturation: any;
        screen: any;
        sepia: any;
        shadow: any;
        sharpen: any;
        shear: any;
        simulateColorblind: any;
        tint: any;
        trim: any;
        unsharpMask: any;
        vectorize: any;
        vibrance: any;
        vignette: any;
    }, "strip", z.ZodTypeAny, {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }, {
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
    }>, "many">>;
};
declare const assetTypes$f: string[];
declare function plugin$f(props: PluginSettings): {};

declare namespace effectsPlugin {
  export { assetTypes$f as assetTypes, plugin$f as plugin, props$f as props };
}

declare const props$e: {
    flags: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, zod.ZodArray<zod.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
};
declare const assetTypes$e: string[];
declare function plugin$e(props: PluginSettings): {};

declare namespace flagsPlugin {
  export { assetTypes$e as assetTypes, plugin$e as plugin, props$e as props };
}

declare const props$d: {
    fillBackground: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        gravity: z.ZodOptional<z.ZodString>;
        prompt: z.ZodOptional<z.ZodString>;
    }, "strip", z.ZodTypeAny, {
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        gravity?: string | undefined;
        prompt?: string | undefined;
    }, {
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        gravity?: string | undefined;
        prompt?: string | undefined;
    }>]>>;
};
declare const assetTypes$d: string[];
declare function plugin$d(props: PluginSettings<ImageOptions>): {};

declare namespace fillBackgroundPlugin {
  export { assetTypes$d as assetTypes, plugin$d as plugin, props$d as props };
}

declare const props$c: {
    replace: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodBoolean, "many">, z.ZodObject<{
        to: z.ZodString;
        from: z.ZodString;
        preserveGeometry: z.ZodOptional<z.ZodBoolean>;
    }, "strip", z.ZodTypeAny, {
        to: string;
        from: string;
        preserveGeometry?: boolean | undefined;
    }, {
        to: string;
        from: string;
        preserveGeometry?: boolean | undefined;
    }>]>>;
};
declare const assetTypes$c: string[];
declare function plugin$c(props: PluginSettings<ImageOptions>): {};

declare namespace replacePlugin {
  export { assetTypes$c as assetTypes, plugin$c as plugin, props$c as props };
}

declare const props$b: {
    namedTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
    /**
     * @deprecated use {@link `namedTransformations`} instead
     */
    transformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
};
declare const assetTypes$b: string[];
declare const strict = true;
declare function plugin$b(props: PluginSettings): {};

declare const namedTransformationsPlugin_strict: typeof strict;
declare namespace namedTransformationsPlugin {
  export { assetTypes$b as assetTypes, plugin$b as plugin, props$b as props, namedTransformationsPlugin_strict as strict };
}

declare const props$a: {
    overlay: z.ZodOptional<z.ZodObject<{
        appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        position: z.ZodOptional<z.ZodObject<{
            angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            gravity: z.ZodOptional<z.ZodString>;
            x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        }, "strip", z.ZodTypeAny, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }>>;
        publicId: z.ZodOptional<z.ZodString>;
        text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
            alignment: z.ZodOptional<z.ZodString>;
            antialias: z.ZodOptional<z.ZodString>;
            border: z.ZodOptional<z.ZodString>;
            color: z.ZodOptional<z.ZodString>;
            fontFamily: z.ZodOptional<z.ZodString>;
            fontSize: z.ZodOptional<z.ZodNumber>;
            fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            fontWeight: z.ZodOptional<z.ZodString>;
            hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            stroke: z.ZodOptional<z.ZodString>;
            text: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }>]>>;
        url: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    }, "strip", z.ZodTypeAny, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }>>;
    overlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
        appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        position: z.ZodOptional<z.ZodObject<{
            angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            gravity: z.ZodOptional<z.ZodString>;
            x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        }, "strip", z.ZodTypeAny, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }>>;
        publicId: z.ZodOptional<z.ZodString>;
        text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
            alignment: z.ZodOptional<z.ZodString>;
            antialias: z.ZodOptional<z.ZodString>;
            border: z.ZodOptional<z.ZodString>;
            color: z.ZodOptional<z.ZodString>;
            fontFamily: z.ZodOptional<z.ZodString>;
            fontSize: z.ZodOptional<z.ZodNumber>;
            fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            fontWeight: z.ZodOptional<z.ZodString>;
            hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            stroke: z.ZodOptional<z.ZodString>;
            text: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }, {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        }>]>>;
        url: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    }, "strip", z.ZodTypeAny, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        text?: string | {
            text: string;
            alignment?: string | undefined;
            antialias?: string | undefined;
            border?: string | undefined;
            color?: string | undefined;
            fontFamily?: string | undefined;
            fontSize?: number | undefined;
            fontStyle?: string | number | undefined;
            fontWeight?: string | undefined;
            hinting?: string | number | undefined;
            letterSpacing?: string | number | undefined;
            lineSpacing?: string | number | undefined;
            stroke?: string | undefined;
        } | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }>, "many">>;
    text: z.ZodOptional<z.ZodString>;
};
declare const assetTypes$a: string[];
declare const DEFAULT_TEXT_OPTIONS: {
    color: string;
    fontFamily: string;
    fontSize: number;
    fontWeight: string;
};
declare function plugin$a(props: PluginSettings): {};

declare const overlaysPlugin_DEFAULT_TEXT_OPTIONS: typeof DEFAULT_TEXT_OPTIONS;
declare namespace overlaysPlugin {
  export { overlaysPlugin_DEFAULT_TEXT_OPTIONS as DEFAULT_TEXT_OPTIONS, assetTypes$a as assetTypes, plugin$a as plugin, props$a as props };
}

declare const props$9: {
    rawTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
};
declare const assetTypes$9: string[];
declare function plugin$9(props: PluginSettings): {};

declare namespace rawTransformationsPlugin {
  export { assetTypes$9 as assetTypes, plugin$9 as plugin, props$9 as props };
}

declare const props$8: {
    recolor: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
        prompt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        to: z.ZodOptional<z.ZodString>;
        multiple: z.ZodOptional<z.ZodBoolean>;
    }, "strip", z.ZodTypeAny, {
        prompt?: string | string[] | undefined;
        to?: string | undefined;
        multiple?: boolean | undefined;
    }, {
        prompt?: string | string[] | undefined;
        to?: string | undefined;
        multiple?: boolean | undefined;
    }>]>>;
};
declare const assetTypes$8: string[];
declare function plugin$8(props: PluginSettings<ImageOptions>): {};

declare namespace recolorPlugin {
  export { assetTypes$8 as assetTypes, plugin$8 as plugin, props$8 as props };
}

declare const props$7: {
    remove: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
        prompt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        region: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
        multiple: z.ZodOptional<z.ZodBoolean>;
        removeShadow: z.ZodOptional<z.ZodBoolean>;
    }, "strip", z.ZodTypeAny, {
        prompt?: string | string[] | undefined;
        region?: number[] | number[][] | undefined;
        multiple?: boolean | undefined;
        removeShadow?: boolean | undefined;
    }, {
        prompt?: string | string[] | undefined;
        region?: number[] | number[][] | undefined;
        multiple?: boolean | undefined;
        removeShadow?: boolean | undefined;
    }>]>>;
};
declare const assetTypes$7: string[];
declare function plugin$7(props: PluginSettings<ImageOptions>): {};

declare namespace removePlugin {
  export { assetTypes$7 as assetTypes, plugin$7 as plugin, props$7 as props };
}

declare const props$6: {
    removeBackground: z.ZodOptional<z.ZodBoolean>;
};
declare const assetTypes$6: string[];
declare function plugin$6(props: PluginSettings<ImageOptions>): {};

declare namespace removeBackgroundPlugin {
  export { assetTypes$6 as assetTypes, plugin$6 as plugin, props$6 as props };
}

declare const props$5: {
    restore: z.ZodOptional<z.ZodBoolean>;
};
declare const assetTypes$5: string[];
declare function plugin$5(props: PluginSettings<ImageOptions>): {};

declare namespace restorePlugin {
  export { assetTypes$5 as assetTypes, plugin$5 as plugin, props$5 as props };
}

declare const props$4: {
    sanitize: z.ZodOptional<z.ZodBoolean>;
};
declare const assetTypes$4: string[];
declare function plugin$4(props: PluginSettings<ImageOptions>): {};

declare namespace sanitizePlugin {
  export { assetTypes$4 as assetTypes, plugin$4 as plugin, props$4 as props };
}

declare const props$3: {
    seoSuffix: z.ZodOptional<z.ZodString>;
};
declare const assetTypes$3: string[];
declare function plugin$3(props: PluginSettings): {};

declare namespace seoPlugin {
  export { assetTypes$3 as assetTypes, plugin$3 as plugin, props$3 as props };
}

declare const props$2: {
    underlay: z.ZodOptional<z.ZodString>;
    underlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
        appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
        crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        position: z.ZodOptional<z.ZodObject<{
            angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            gravity: z.ZodOptional<z.ZodString>;
            x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        }, "strip", z.ZodTypeAny, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }, {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        }>>;
        publicId: z.ZodOptional<z.ZodString>;
        type: z.ZodOptional<z.ZodString>;
        url: z.ZodOptional<z.ZodString>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
    }, "strip", z.ZodTypeAny, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }, {
        appliedEffects?: {}[] | undefined;
        appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        effects?: {}[] | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        height?: string | number | undefined;
        position?: {
            angle?: string | number | undefined;
            gravity?: string | undefined;
            x?: string | number | undefined;
            y?: string | number | undefined;
        } | undefined;
        publicId?: string | undefined;
        type?: string | undefined;
        url?: string | undefined;
        width?: string | number | undefined;
    }>, "many">>;
};
declare const assetTypes$2: string[];
declare function plugin$2(props: PluginSettings): {};

declare namespace underlaysPlugin {
  export { assetTypes$2 as assetTypes, plugin$2 as plugin, props$2 as props };
}

declare const props$1: {
    version: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
};
declare const assetTypes$1: string[];
declare function plugin$1(props: PluginSettings): {};

declare namespace versionPlugin {
  export { assetTypes$1 as assetTypes, plugin$1 as plugin, props$1 as props };
}

declare const props: {
    zoompan: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodObject<{
        loop: z.ZodUnion<[z.ZodString, z.ZodBoolean]>;
        options: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        options: string;
        loop: string | boolean;
    }, {
        options: string;
        loop: string | boolean;
    }>]>>;
};
declare const assetTypes: string[];
declare function plugin(props: PluginSettings<ImageOptions>): {
    options: PluginOverrides;
};

declare const zoompanPlugin_assetTypes: typeof assetTypes;
declare const zoompanPlugin_plugin: typeof plugin;
declare const zoompanPlugin_props: typeof props;
declare namespace zoompanPlugin {
  export { zoompanPlugin_assetTypes as assetTypes, zoompanPlugin_plugin as plugin, zoompanPlugin_props as props };
}

declare const transformationPlugins: (typeof abrPlugin | typeof croppingPlugin | typeof defaultImagePlugin | typeof effectsPlugin | typeof flagsPlugin | typeof fillBackgroundPlugin | typeof replacePlugin | typeof namedTransformationsPlugin | typeof overlaysPlugin | typeof rawTransformationsPlugin | typeof recolorPlugin | typeof removePlugin | typeof removeBackgroundPlugin | typeof restorePlugin | typeof sanitizePlugin | typeof seoPlugin | typeof underlaysPlugin | typeof versionPlugin | typeof zoompanPlugin)[];
/**
 * constructCloudinaryUrl
 * @description Builds a full Cloudinary URL using transformation plugins specified by options
 */
declare const constructUrlPropsSchema: z.ZodObject<{
    analytics: z.ZodOptional<z.ZodUnion<[z.ZodType<CloudinaryAnalyticsOptions, z.ZodTypeDef, CloudinaryAnalyticsOptions>, z.ZodBoolean]>>;
    config: z.ZodOptional<z.ZodType<CloudinaryConfigurationOptions, z.ZodTypeDef, CloudinaryConfigurationOptions>>;
    options: z.ZodUnion<[z.ZodObject<{
        version: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        underlay: z.ZodOptional<z.ZodString>;
        underlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
            appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
            flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
            position: z.ZodOptional<z.ZodObject<{
                angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                gravity: z.ZodOptional<z.ZodString>;
                x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            }, "strip", z.ZodTypeAny, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }>>;
            publicId: z.ZodOptional<z.ZodString>;
            type: z.ZodOptional<z.ZodString>;
            url: z.ZodOptional<z.ZodString>;
            width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        }, "strip", z.ZodTypeAny, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }>, "many">>;
        seoSuffix: z.ZodOptional<z.ZodString>;
        sanitize: z.ZodOptional<z.ZodBoolean>;
        removeBackground: z.ZodOptional<z.ZodBoolean>;
        rawTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        overlay: z.ZodOptional<z.ZodObject<{
            appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
            flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
            position: z.ZodOptional<z.ZodObject<{
                angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                gravity: z.ZodOptional<z.ZodString>;
                x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            }, "strip", z.ZodTypeAny, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }>>;
            publicId: z.ZodOptional<z.ZodString>;
            text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
                alignment: z.ZodOptional<z.ZodString>;
                antialias: z.ZodOptional<z.ZodString>;
                border: z.ZodOptional<z.ZodString>;
                color: z.ZodOptional<z.ZodString>;
                fontFamily: z.ZodOptional<z.ZodString>;
                fontSize: z.ZodOptional<z.ZodNumber>;
                fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                fontWeight: z.ZodOptional<z.ZodString>;
                hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                stroke: z.ZodOptional<z.ZodString>;
                text: z.ZodString;
            }, "strip", z.ZodTypeAny, {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            }, {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            }>]>>;
            url: z.ZodOptional<z.ZodString>;
            width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        }, "strip", z.ZodTypeAny, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }>>;
        overlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
            appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
            flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
            position: z.ZodOptional<z.ZodObject<{
                angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                gravity: z.ZodOptional<z.ZodString>;
                x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            }, "strip", z.ZodTypeAny, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }>>;
            publicId: z.ZodOptional<z.ZodString>;
            text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
                alignment: z.ZodOptional<z.ZodString>;
                antialias: z.ZodOptional<z.ZodString>;
                border: z.ZodOptional<z.ZodString>;
                color: z.ZodOptional<z.ZodString>;
                fontFamily: z.ZodOptional<z.ZodString>;
                fontSize: z.ZodOptional<z.ZodNumber>;
                fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                fontWeight: z.ZodOptional<z.ZodString>;
                hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                stroke: z.ZodOptional<z.ZodString>;
                text: z.ZodString;
            }, "strip", z.ZodTypeAny, {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            }, {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            }>]>>;
            url: z.ZodOptional<z.ZodString>;
            width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        }, "strip", z.ZodTypeAny, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }>, "many">>;
        text: z.ZodOptional<z.ZodString>;
        namedTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        transformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        art: any;
        autoBrightness: any;
        autoColor: any;
        autoContrast: any;
        assistColorblind: any;
        background: any;
        blackwhite: any;
        blur: any;
        blurFaces: any;
        blurRegion: any;
        border: any;
        brightness: any;
        brightnessHSB: any;
        cartoonify: any;
        color: any;
        colorize: any;
        contrast: any;
        distort: any;
        fillLight: any;
        gamma: any;
        gradientFade: any;
        grayscale: any;
        improve: any;
        multiply: any;
        negate: any;
        oilPaint: any;
        opacity: any;
        outline: any;
        pixelate: any;
        pixelateFaces: any;
        pixelateRegion: any;
        radius: any;
        redeye: any;
        replaceColor: any;
        saturation: any;
        screen: any;
        sepia: any;
        shadow: any;
        sharpen: any;
        shear: any;
        simulateColorblind: any;
        tint: any;
        trim: any;
        unsharpMask: any;
        vectorize: any;
        vibrance: any;
        vignette: any;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{
            art: any;
            autoBrightness: any;
            autoColor: any;
            autoContrast: any;
            assistColorblind: any;
            background: any;
            blackwhite: any;
            blur: any;
            blurFaces: any;
            blurRegion: any;
            border: any;
            brightness: any;
            brightnessHSB: any;
            cartoonify: any;
            color: any;
            colorize: any;
            contrast: any;
            distort: any;
            fillLight: any;
            gamma: any;
            gradientFade: any;
            grayscale: any;
            improve: any;
            multiply: any;
            negate: any;
            oilPaint: any;
            opacity: any;
            outline: any;
            pixelate: any;
            pixelateFaces: any;
            pixelateRegion: any;
            radius: any;
            redeye: any;
            replaceColor: any;
            saturation: any;
            screen: any;
            sepia: any;
            shadow: any;
            sharpen: any;
            shear: any;
            simulateColorblind: any;
            tint: any;
            trim: any;
            unsharpMask: any;
            vectorize: any;
            vibrance: any;
            vignette: any;
        }, "strip", z.ZodTypeAny, {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }, {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }>, "many">>;
        aspectRatio: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodEnum<["vflip", "hflip", "ignore", "auto_right", "auto_left"]>, z.ZodString]>>;
        crop: z.ZodOptional<z.ZodDefault<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>>;
        gravity: z.ZodOptional<z.ZodString>;
        widthResize: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        zoom: z.ZodOptional<z.ZodString>;
        assetType: z.ZodOptional<z.ZodDefault<z.ZodString>>;
        deliveryType: z.ZodOptional<z.ZodDefault<z.ZodString>>;
        dpr: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        format: z.ZodOptional<z.ZodDefault<z.ZodString>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        quality: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
        src: z.ZodString;
        strictTransformations: z.ZodOptional<z.ZodBoolean>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
    }, "strip", z.ZodTypeAny, {
        src: string;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        sanitize?: boolean | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        text?: string | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        aspectRatio?: string | number | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        gravity?: string | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
    }, {
        src: string;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        sanitize?: boolean | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        text?: string | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        aspectRatio?: string | number | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        gravity?: string | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
    }>, z.ZodObject<{
        crop: z.ZodOptional<z.ZodDefault<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>>;
        sanitize: z.ZodOptional<z.ZodBoolean>;
        assetType: z.ZodOptional<z.ZodDefault<z.ZodString>>;
        deliveryType: z.ZodOptional<z.ZodDefault<z.ZodString>>;
        dpr: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        format: z.ZodOptional<z.ZodDefault<z.ZodString>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        quality: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
        src: z.ZodString;
        strictTransformations: z.ZodOptional<z.ZodBoolean>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        art: any;
        autoBrightness: any;
        autoColor: any;
        autoContrast: any;
        assistColorblind: any;
        background: any;
        blackwhite: any;
        blur: any;
        blurFaces: any;
        blurRegion: any;
        border: any;
        brightness: any;
        brightnessHSB: any;
        cartoonify: any;
        color: any;
        colorize: any;
        contrast: any;
        distort: any;
        fillLight: any;
        gamma: any;
        gradientFade: any;
        grayscale: any;
        improve: any;
        multiply: any;
        negate: any;
        oilPaint: any;
        opacity: any;
        outline: any;
        pixelate: any;
        pixelateFaces: any;
        pixelateRegion: any;
        radius: any;
        redeye: any;
        replaceColor: any;
        saturation: any;
        screen: any;
        sepia: any;
        shadow: any;
        sharpen: any;
        shear: any;
        simulateColorblind: any;
        tint: any;
        trim: any;
        unsharpMask: any;
        vectorize: any;
        vibrance: any;
        vignette: any;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{
            art: any;
            autoBrightness: any;
            autoColor: any;
            autoContrast: any;
            assistColorblind: any;
            background: any;
            blackwhite: any;
            blur: any;
            blurFaces: any;
            blurRegion: any;
            border: any;
            brightness: any;
            brightnessHSB: any;
            cartoonify: any;
            color: any;
            colorize: any;
            contrast: any;
            distort: any;
            fillLight: any;
            gamma: any;
            gradientFade: any;
            grayscale: any;
            improve: any;
            multiply: any;
            negate: any;
            oilPaint: any;
            opacity: any;
            outline: any;
            pixelate: any;
            pixelateFaces: any;
            pixelateRegion: any;
            radius: any;
            redeye: any;
            replaceColor: any;
            saturation: any;
            screen: any;
            sepia: any;
            shadow: any;
            sharpen: any;
            shear: any;
            simulateColorblind: any;
            tint: any;
            trim: any;
            unsharpMask: any;
            vectorize: any;
            vibrance: any;
            vignette: any;
        }, "strip", z.ZodTypeAny, {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }, {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }>, "many">>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        gravity: z.ZodOptional<z.ZodString>;
        text: z.ZodOptional<z.ZodString>;
        version: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        underlay: z.ZodOptional<z.ZodString>;
        underlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
            appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
            flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
            position: z.ZodOptional<z.ZodObject<{
                angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                gravity: z.ZodOptional<z.ZodString>;
                x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            }, "strip", z.ZodTypeAny, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }>>;
            publicId: z.ZodOptional<z.ZodString>;
            type: z.ZodOptional<z.ZodString>;
            url: z.ZodOptional<z.ZodString>;
            width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        }, "strip", z.ZodTypeAny, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }>, "many">>;
        seoSuffix: z.ZodOptional<z.ZodString>;
        removeBackground: z.ZodOptional<z.ZodBoolean>;
        rawTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        overlay: z.ZodOptional<z.ZodObject<{
            appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
            flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
            position: z.ZodOptional<z.ZodObject<{
                angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                gravity: z.ZodOptional<z.ZodString>;
                x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            }, "strip", z.ZodTypeAny, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }>>;
            publicId: z.ZodOptional<z.ZodString>;
            text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
                alignment: z.ZodOptional<z.ZodString>;
                antialias: z.ZodOptional<z.ZodString>;
                border: z.ZodOptional<z.ZodString>;
                color: z.ZodOptional<z.ZodString>;
                fontFamily: z.ZodOptional<z.ZodString>;
                fontSize: z.ZodOptional<z.ZodNumber>;
                fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                fontWeight: z.ZodOptional<z.ZodString>;
                hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                stroke: z.ZodOptional<z.ZodString>;
                text: z.ZodString;
            }, "strip", z.ZodTypeAny, {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            }, {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            }>]>>;
            url: z.ZodOptional<z.ZodString>;
            width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        }, "strip", z.ZodTypeAny, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }>>;
        overlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
            appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
            flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
            position: z.ZodOptional<z.ZodObject<{
                angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                gravity: z.ZodOptional<z.ZodString>;
                x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            }, "strip", z.ZodTypeAny, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }>>;
            publicId: z.ZodOptional<z.ZodString>;
            text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
                alignment: z.ZodOptional<z.ZodString>;
                antialias: z.ZodOptional<z.ZodString>;
                border: z.ZodOptional<z.ZodString>;
                color: z.ZodOptional<z.ZodString>;
                fontFamily: z.ZodOptional<z.ZodString>;
                fontSize: z.ZodOptional<z.ZodNumber>;
                fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                fontWeight: z.ZodOptional<z.ZodString>;
                hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                stroke: z.ZodOptional<z.ZodString>;
                text: z.ZodString;
            }, "strip", z.ZodTypeAny, {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            }, {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            }>]>>;
            url: z.ZodOptional<z.ZodString>;
            width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        }, "strip", z.ZodTypeAny, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }>, "many">>;
        namedTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        transformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        aspectRatio: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodEnum<["vflip", "hflip", "ignore", "auto_right", "auto_left"]>, z.ZodString]>>;
        widthResize: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        zoom: z.ZodOptional<z.ZodString>;
        zoompan: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodObject<{
            loop: z.ZodUnion<[z.ZodString, z.ZodBoolean]>;
            options: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            options: string;
            loop: string | boolean;
        }, {
            options: string;
            loop: string | boolean;
        }>]>>;
        restore: z.ZodOptional<z.ZodBoolean>;
        replace: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodBoolean, "many">, z.ZodObject<{
            to: z.ZodString;
            from: z.ZodString;
            preserveGeometry: z.ZodOptional<z.ZodBoolean>;
        }, "strip", z.ZodTypeAny, {
            to: string;
            from: string;
            preserveGeometry?: boolean | undefined;
        }, {
            to: string;
            from: string;
            preserveGeometry?: boolean | undefined;
        }>]>>;
        remove: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
            prompt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
            region: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
            multiple: z.ZodOptional<z.ZodBoolean>;
            removeShadow: z.ZodOptional<z.ZodBoolean>;
        }, "strip", z.ZodTypeAny, {
            prompt?: string | string[] | undefined;
            region?: number[] | number[][] | undefined;
            multiple?: boolean | undefined;
            removeShadow?: boolean | undefined;
        }, {
            prompt?: string | string[] | undefined;
            region?: number[] | number[][] | undefined;
            multiple?: boolean | undefined;
            removeShadow?: boolean | undefined;
        }>]>>;
        recolor: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>, z.ZodObject<{
            prompt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
            to: z.ZodOptional<z.ZodString>;
            multiple: z.ZodOptional<z.ZodBoolean>;
        }, "strip", z.ZodTypeAny, {
            prompt?: string | string[] | undefined;
            to?: string | undefined;
            multiple?: boolean | undefined;
        }, {
            prompt?: string | string[] | undefined;
            to?: string | undefined;
            multiple?: boolean | undefined;
        }>]>>;
        fillBackground: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
            crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
            gravity: z.ZodOptional<z.ZodString>;
            prompt: z.ZodOptional<z.ZodString>;
        }, "strip", z.ZodTypeAny, {
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            gravity?: string | undefined;
            prompt?: string | undefined;
        }, {
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            gravity?: string | undefined;
            prompt?: string | undefined;
        }>]>>;
        defaultImage: z.ZodOptional<z.ZodString>;
    }, "strip", z.ZodTypeAny, {
        src: string;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        sanitize?: boolean | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        gravity?: string | undefined;
        text?: string | undefined;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        aspectRatio?: string | number | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        zoompan?: string | boolean | {
            options: string;
            loop: string | boolean;
        } | undefined;
        restore?: boolean | undefined;
        replace?: string[] | boolean[] | {
            to: string;
            from: string;
            preserveGeometry?: boolean | undefined;
        } | undefined;
        remove?: string | string[] | {
            prompt?: string | string[] | undefined;
            region?: number[] | number[][] | undefined;
            multiple?: boolean | undefined;
            removeShadow?: boolean | undefined;
        } | undefined;
        recolor?: string | string[] | {
            prompt?: string | string[] | undefined;
            to?: string | undefined;
            multiple?: boolean | undefined;
        } | undefined;
        fillBackground?: boolean | {
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            gravity?: string | undefined;
            prompt?: string | undefined;
        } | undefined;
        defaultImage?: string | undefined;
    }, {
        src: string;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        sanitize?: boolean | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        gravity?: string | undefined;
        text?: string | undefined;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        aspectRatio?: string | number | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        zoompan?: string | boolean | {
            options: string;
            loop: string | boolean;
        } | undefined;
        restore?: boolean | undefined;
        replace?: string[] | boolean[] | {
            to: string;
            from: string;
            preserveGeometry?: boolean | undefined;
        } | undefined;
        remove?: string | string[] | {
            prompt?: string | string[] | undefined;
            region?: number[] | number[][] | undefined;
            multiple?: boolean | undefined;
            removeShadow?: boolean | undefined;
        } | undefined;
        recolor?: string | string[] | {
            prompt?: string | string[] | undefined;
            to?: string | undefined;
            multiple?: boolean | undefined;
        } | undefined;
        fillBackground?: boolean | {
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            gravity?: string | undefined;
            prompt?: string | undefined;
        } | undefined;
        defaultImage?: string | undefined;
    }>, z.ZodObject<{
        crop: z.ZodOptional<z.ZodDefault<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>>;
        sanitize: z.ZodOptional<z.ZodBoolean>;
        assetType: z.ZodOptional<z.ZodDefault<z.ZodString>>;
        deliveryType: z.ZodOptional<z.ZodDefault<z.ZodString>>;
        dpr: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        format: z.ZodOptional<z.ZodDefault<z.ZodString>>;
        height: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        quality: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
        src: z.ZodString;
        strictTransformations: z.ZodOptional<z.ZodBoolean>;
        width: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        art: any;
        autoBrightness: any;
        autoColor: any;
        autoContrast: any;
        assistColorblind: any;
        background: any;
        blackwhite: any;
        blur: any;
        blurFaces: any;
        blurRegion: any;
        border: any;
        brightness: any;
        brightnessHSB: any;
        cartoonify: any;
        color: any;
        colorize: any;
        contrast: any;
        distort: any;
        fillLight: any;
        gamma: any;
        gradientFade: any;
        grayscale: any;
        improve: any;
        multiply: any;
        negate: any;
        oilPaint: any;
        opacity: any;
        outline: any;
        pixelate: any;
        pixelateFaces: any;
        pixelateRegion: any;
        radius: any;
        redeye: any;
        replaceColor: any;
        saturation: any;
        screen: any;
        sepia: any;
        shadow: any;
        sharpen: any;
        shear: any;
        simulateColorblind: any;
        tint: any;
        trim: any;
        unsharpMask: any;
        vectorize: any;
        vibrance: any;
        vignette: any;
        effects: z.ZodOptional<z.ZodArray<z.ZodObject<{
            art: any;
            autoBrightness: any;
            autoColor: any;
            autoContrast: any;
            assistColorblind: any;
            background: any;
            blackwhite: any;
            blur: any;
            blurFaces: any;
            blurRegion: any;
            border: any;
            brightness: any;
            brightnessHSB: any;
            cartoonify: any;
            color: any;
            colorize: any;
            contrast: any;
            distort: any;
            fillLight: any;
            gamma: any;
            gradientFade: any;
            grayscale: any;
            improve: any;
            multiply: any;
            negate: any;
            oilPaint: any;
            opacity: any;
            outline: any;
            pixelate: any;
            pixelateFaces: any;
            pixelateRegion: any;
            radius: any;
            redeye: any;
            replaceColor: any;
            saturation: any;
            screen: any;
            sepia: any;
            shadow: any;
            sharpen: any;
            shear: any;
            simulateColorblind: any;
            tint: any;
            trim: any;
            unsharpMask: any;
            vectorize: any;
            vibrance: any;
            vignette: any;
        }, "strip", z.ZodTypeAny, {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }, {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }>, "many">>;
        flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
        gravity: z.ZodOptional<z.ZodString>;
        text: z.ZodOptional<z.ZodString>;
        version: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        underlay: z.ZodOptional<z.ZodString>;
        underlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
            appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
            flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
            position: z.ZodOptional<z.ZodObject<{
                angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                gravity: z.ZodOptional<z.ZodString>;
                x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            }, "strip", z.ZodTypeAny, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }>>;
            publicId: z.ZodOptional<z.ZodString>;
            type: z.ZodOptional<z.ZodString>;
            url: z.ZodOptional<z.ZodString>;
            width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        }, "strip", z.ZodTypeAny, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }>, "many">>;
        seoSuffix: z.ZodOptional<z.ZodString>;
        removeBackground: z.ZodOptional<z.ZodBoolean>;
        rawTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        overlay: z.ZodOptional<z.ZodObject<{
            appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
            flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
            position: z.ZodOptional<z.ZodObject<{
                angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                gravity: z.ZodOptional<z.ZodString>;
                x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            }, "strip", z.ZodTypeAny, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }>>;
            publicId: z.ZodOptional<z.ZodString>;
            text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
                alignment: z.ZodOptional<z.ZodString>;
                antialias: z.ZodOptional<z.ZodString>;
                border: z.ZodOptional<z.ZodString>;
                color: z.ZodOptional<z.ZodString>;
                fontFamily: z.ZodOptional<z.ZodString>;
                fontSize: z.ZodOptional<z.ZodNumber>;
                fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                fontWeight: z.ZodOptional<z.ZodString>;
                hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                stroke: z.ZodOptional<z.ZodString>;
                text: z.ZodString;
            }, "strip", z.ZodTypeAny, {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            }, {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            }>]>>;
            url: z.ZodOptional<z.ZodString>;
            width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        }, "strip", z.ZodTypeAny, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }>>;
        overlays: z.ZodOptional<z.ZodArray<z.ZodObject<{
            appliedEffects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            appliedFlags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            effects: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, "many">>;
            crop: z.ZodOptional<z.ZodEnum<["fill", "lfill", "fill_pad", "crop", "thumb", "scale", "fit", "limit", "mfit", "pad", "lpad", "mpad", "imagga_scale", "imagga_crop"]>>;
            flags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, z.ZodArray<z.ZodEnum<["animated", "any_format", "apng", "attachment", "awebp", "clip", "clip_evenodd", "cutter", "force_icc", "force_strip", "getinfo", "group4", "hlsv3", "ignore_aspect_ratio", "ignore_mask_channels", "immutable_cache", "keep_attribution", "keep_dar", "keep_iptc", "layer_apply", "lossy", "mono", "no_overflow", "no_stream", "png8_fl_png24_fl_png32", "preserve_transparency", "progressive", "rasterize", "region_relative", "relative", "replace_image", "sanitize", "splice", "streaming_attachment", "strip_profile", "text_disallow_overflow", "text_no_trim", "tiff8_lzw", "tiled", "truncate_ts", "waveform"]>, "many">]>>;
            height: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
            position: z.ZodOptional<z.ZodObject<{
                angle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                gravity: z.ZodOptional<z.ZodString>;
                x: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                y: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
            }, "strip", z.ZodTypeAny, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }, {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            }>>;
            publicId: z.ZodOptional<z.ZodString>;
            text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
                alignment: z.ZodOptional<z.ZodString>;
                antialias: z.ZodOptional<z.ZodString>;
                border: z.ZodOptional<z.ZodString>;
                color: z.ZodOptional<z.ZodString>;
                fontFamily: z.ZodOptional<z.ZodString>;
                fontSize: z.ZodOptional<z.ZodNumber>;
                fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                fontWeight: z.ZodOptional<z.ZodString>;
                hinting: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                letterSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                lineSpacing: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
                stroke: z.ZodOptional<z.ZodString>;
                text: z.ZodString;
            }, "strip", z.ZodTypeAny, {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            }, {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            }>]>>;
            url: z.ZodOptional<z.ZodString>;
            width: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
        }, "strip", z.ZodTypeAny, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }, {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }>, "many">>;
        namedTransformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        transformations: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
        aspectRatio: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodEnum<["vflip", "hflip", "ignore", "auto_right", "auto_left"]>, z.ZodString]>>;
        widthResize: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
        zoom: z.ZodOptional<z.ZodString>;
        streamingProfile: z.ZodOptional<z.ZodString>;
    }, "strip", z.ZodTypeAny, {
        src: string;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        sanitize?: boolean | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        gravity?: string | undefined;
        text?: string | undefined;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        aspectRatio?: string | number | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        streamingProfile?: string | undefined;
    }, {
        src: string;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        sanitize?: boolean | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        gravity?: string | undefined;
        text?: string | undefined;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        aspectRatio?: string | number | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        streamingProfile?: string | undefined;
    }>]>;
}, "strip", z.ZodTypeAny, {
    options: ({
        src: string;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        sanitize?: boolean | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        text?: string | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        aspectRatio?: string | number | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        gravity?: string | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
    } | {
        src: string;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        sanitize?: boolean | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        gravity?: string | undefined;
        text?: string | undefined;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        aspectRatio?: string | number | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        zoompan?: string | boolean | {
            options: string;
            loop: string | boolean;
        } | undefined;
        restore?: boolean | undefined;
        replace?: string[] | boolean[] | {
            to: string;
            from: string;
            preserveGeometry?: boolean | undefined;
        } | undefined;
        remove?: string | string[] | {
            prompt?: string | string[] | undefined;
            region?: number[] | number[][] | undefined;
            multiple?: boolean | undefined;
            removeShadow?: boolean | undefined;
        } | undefined;
        recolor?: string | string[] | {
            prompt?: string | string[] | undefined;
            to?: string | undefined;
            multiple?: boolean | undefined;
        } | undefined;
        fillBackground?: boolean | {
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            gravity?: string | undefined;
            prompt?: string | undefined;
        } | undefined;
        defaultImage?: string | undefined;
    } | {
        src: string;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        sanitize?: boolean | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        gravity?: string | undefined;
        text?: string | undefined;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        aspectRatio?: string | number | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        streamingProfile?: string | undefined;
    }) & ({
        src: string;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        sanitize?: boolean | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        text?: string | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        aspectRatio?: string | number | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        gravity?: string | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
    } | {
        src: string;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        sanitize?: boolean | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        gravity?: string | undefined;
        text?: string | undefined;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        aspectRatio?: string | number | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        zoompan?: string | boolean | {
            options: string;
            loop: string | boolean;
        } | undefined;
        restore?: boolean | undefined;
        replace?: string[] | boolean[] | {
            to: string;
            from: string;
            preserveGeometry?: boolean | undefined;
        } | undefined;
        remove?: string | string[] | {
            prompt?: string | string[] | undefined;
            region?: number[] | number[][] | undefined;
            multiple?: boolean | undefined;
            removeShadow?: boolean | undefined;
        } | undefined;
        recolor?: string | string[] | {
            prompt?: string | string[] | undefined;
            to?: string | undefined;
            multiple?: boolean | undefined;
        } | undefined;
        fillBackground?: boolean | {
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            gravity?: string | undefined;
            prompt?: string | undefined;
        } | undefined;
        defaultImage?: string | undefined;
    } | {
        src: string;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        sanitize?: boolean | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        gravity?: string | undefined;
        text?: string | undefined;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        aspectRatio?: string | number | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        streamingProfile?: string | undefined;
    } | undefined);
    analytics?: boolean | CloudinaryAnalyticsOptions | undefined;
    config?: CloudinaryConfigurationOptions | undefined;
}, {
    options: ({
        src: string;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        sanitize?: boolean | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        text?: string | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        aspectRatio?: string | number | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        gravity?: string | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
    } | {
        src: string;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        sanitize?: boolean | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        gravity?: string | undefined;
        text?: string | undefined;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        aspectRatio?: string | number | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        zoompan?: string | boolean | {
            options: string;
            loop: string | boolean;
        } | undefined;
        restore?: boolean | undefined;
        replace?: string[] | boolean[] | {
            to: string;
            from: string;
            preserveGeometry?: boolean | undefined;
        } | undefined;
        remove?: string | string[] | {
            prompt?: string | string[] | undefined;
            region?: number[] | number[][] | undefined;
            multiple?: boolean | undefined;
            removeShadow?: boolean | undefined;
        } | undefined;
        recolor?: string | string[] | {
            prompt?: string | string[] | undefined;
            to?: string | undefined;
            multiple?: boolean | undefined;
        } | undefined;
        fillBackground?: boolean | {
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            gravity?: string | undefined;
            prompt?: string | undefined;
        } | undefined;
        defaultImage?: string | undefined;
    } | {
        src: string;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        sanitize?: boolean | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        gravity?: string | undefined;
        text?: string | undefined;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        aspectRatio?: string | number | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        streamingProfile?: string | undefined;
    }) & ({
        src: string;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        sanitize?: boolean | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        text?: string | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        aspectRatio?: string | number | undefined;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        gravity?: string | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
    } | {
        src: string;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        sanitize?: boolean | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        gravity?: string | undefined;
        text?: string | undefined;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        aspectRatio?: string | number | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        zoompan?: string | boolean | {
            options: string;
            loop: string | boolean;
        } | undefined;
        restore?: boolean | undefined;
        replace?: string[] | boolean[] | {
            to: string;
            from: string;
            preserveGeometry?: boolean | undefined;
        } | undefined;
        remove?: string | string[] | {
            prompt?: string | string[] | undefined;
            region?: number[] | number[][] | undefined;
            multiple?: boolean | undefined;
            removeShadow?: boolean | undefined;
        } | undefined;
        recolor?: string | string[] | {
            prompt?: string | string[] | undefined;
            to?: string | undefined;
            multiple?: boolean | undefined;
        } | undefined;
        fillBackground?: boolean | {
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            gravity?: string | undefined;
            prompt?: string | undefined;
        } | undefined;
        defaultImage?: string | undefined;
    } | {
        src: string;
        crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
        sanitize?: boolean | undefined;
        assetType?: string | undefined;
        deliveryType?: string | undefined;
        dpr?: string | number | undefined;
        format?: string | undefined;
        height?: string | number | undefined;
        quality?: string | number | undefined;
        strictTransformations?: boolean | undefined;
        width?: string | number | undefined;
        art?: any;
        autoBrightness?: any;
        autoColor?: any;
        autoContrast?: any;
        assistColorblind?: any;
        background?: any;
        blackwhite?: any;
        blur?: any;
        blurFaces?: any;
        blurRegion?: any;
        border?: any;
        brightness?: any;
        brightnessHSB?: any;
        cartoonify?: any;
        color?: any;
        colorize?: any;
        contrast?: any;
        distort?: any;
        fillLight?: any;
        gamma?: any;
        gradientFade?: any;
        grayscale?: any;
        improve?: any;
        multiply?: any;
        negate?: any;
        oilPaint?: any;
        opacity?: any;
        outline?: any;
        pixelate?: any;
        pixelateFaces?: any;
        pixelateRegion?: any;
        radius?: any;
        redeye?: any;
        replaceColor?: any;
        saturation?: any;
        screen?: any;
        sepia?: any;
        shadow?: any;
        sharpen?: any;
        shear?: any;
        simulateColorblind?: any;
        tint?: any;
        trim?: any;
        unsharpMask?: any;
        vectorize?: any;
        vibrance?: any;
        vignette?: any;
        effects?: {
            art?: any;
            autoBrightness?: any;
            autoColor?: any;
            autoContrast?: any;
            assistColorblind?: any;
            background?: any;
            blackwhite?: any;
            blur?: any;
            blurFaces?: any;
            blurRegion?: any;
            border?: any;
            brightness?: any;
            brightnessHSB?: any;
            cartoonify?: any;
            color?: any;
            colorize?: any;
            contrast?: any;
            distort?: any;
            fillLight?: any;
            gamma?: any;
            gradientFade?: any;
            grayscale?: any;
            improve?: any;
            multiply?: any;
            negate?: any;
            oilPaint?: any;
            opacity?: any;
            outline?: any;
            pixelate?: any;
            pixelateFaces?: any;
            pixelateRegion?: any;
            radius?: any;
            redeye?: any;
            replaceColor?: any;
            saturation?: any;
            screen?: any;
            sepia?: any;
            shadow?: any;
            sharpen?: any;
            shear?: any;
            simulateColorblind?: any;
            tint?: any;
            trim?: any;
            unsharpMask?: any;
            vectorize?: any;
            vibrance?: any;
            vignette?: any;
        }[] | undefined;
        flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
        gravity?: string | undefined;
        text?: string | undefined;
        version?: string | number | undefined;
        underlay?: string | undefined;
        underlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            type?: string | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        seoSuffix?: string | undefined;
        removeBackground?: boolean | undefined;
        rawTransformations?: string | string[] | undefined;
        overlay?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        } | undefined;
        overlays?: {
            appliedEffects?: {}[] | undefined;
            appliedFlags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            effects?: {}[] | undefined;
            crop?: "fill" | "lfill" | "fill_pad" | "crop" | "thumb" | "scale" | "fit" | "limit" | "mfit" | "pad" | "lpad" | "mpad" | "imagga_scale" | "imagga_crop" | undefined;
            flags?: "splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform" | ("splice" | "animated" | "any_format" | "apng" | "attachment" | "awebp" | "clip" | "clip_evenodd" | "cutter" | "force_icc" | "force_strip" | "getinfo" | "group4" | "hlsv3" | "ignore_aspect_ratio" | "ignore_mask_channels" | "immutable_cache" | "keep_attribution" | "keep_dar" | "keep_iptc" | "layer_apply" | "lossy" | "mono" | "no_overflow" | "no_stream" | "png8_fl_png24_fl_png32" | "preserve_transparency" | "progressive" | "rasterize" | "region_relative" | "relative" | "replace_image" | "sanitize" | "streaming_attachment" | "strip_profile" | "text_disallow_overflow" | "text_no_trim" | "tiff8_lzw" | "tiled" | "truncate_ts" | "waveform")[] | undefined;
            height?: string | number | undefined;
            position?: {
                angle?: string | number | undefined;
                gravity?: string | undefined;
                x?: string | number | undefined;
                y?: string | number | undefined;
            } | undefined;
            publicId?: string | undefined;
            text?: string | {
                text: string;
                alignment?: string | undefined;
                antialias?: string | undefined;
                border?: string | undefined;
                color?: string | undefined;
                fontFamily?: string | undefined;
                fontSize?: number | undefined;
                fontStyle?: string | number | undefined;
                fontWeight?: string | undefined;
                hinting?: string | number | undefined;
                letterSpacing?: string | number | undefined;
                lineSpacing?: string | number | undefined;
                stroke?: string | undefined;
            } | undefined;
            url?: string | undefined;
            width?: string | number | undefined;
        }[] | undefined;
        namedTransformations?: string | string[] | undefined;
        transformations?: string | string[] | undefined;
        aspectRatio?: string | number | undefined;
        widthResize?: string | number | undefined;
        zoom?: string | undefined;
        streamingProfile?: string | undefined;
    } | undefined);
    analytics?: boolean | CloudinaryAnalyticsOptions | undefined;
    config?: CloudinaryConfigurationOptions | undefined;
}>;
type ConstructUrlProps = z.infer<typeof constructUrlPropsSchema>;
interface PluginOptionsResize {
    crop?: string;
    width?: string | number;
}
interface PluginOptions {
    format?: string;
    resize?: PluginOptionsResize;
    width?: string | number;
}
interface PluginResults {
    options?: PluginOptions;
}
declare function constructCloudinaryUrl({ options, config, analytics }: ConstructUrlProps): string;

export { type AssetOptions as A, type ConstructUrlProps as C, type ImageOptions as I, type PluginOptionsResize as P, type VideoOptions as V, type PluginOptions as a, type PluginResults as b, constructCloudinaryUrl as c, type AnalyticsOptions as d, type CloudinaryAnalyticsOptions as e, type ConfigOptions as f, type CloudinaryConfigurationOptions as g, type PluginSettings as h, type PluginOverrides as i, constructUrlPropsSchema as j, assetOptionsSchema as k, imageOptionsSchema as l, transformationPlugins as t, videoOptionsSchema as v };
