export declare const IMAGE_STYLE_ENHANCE = "enhance"; export declare const IMAGE_STYLE_ANIME = "anime"; export declare const IMAGE_STYLE_PHOTOGRAPHIC = "photographic"; export declare const IMAGE_STYLE_DIGITAL_ART = "digital-art"; export declare const IMAGE_STYLE_COMICBOOK = "comicbook"; export declare const IMAGE_STYLE_FANTASY_ART = "fantasy-art"; export declare const IMAGE_STYLE_ANALOG_FILM = "analog-film"; export declare const IMAGE_STYLE_NEONPUNK = "neonpunk"; export declare const IMAGE_STYLE_ISOMETRIC = "isometric"; export declare const IMAGE_STYLE_LOWPOLY = "lowpoly"; export declare const IMAGE_STYLE_ORIGAMI = "origami"; export declare const IMAGE_STYLE_LINE_ART = "line-art"; export declare const IMAGE_STYLE_CRAFT_CLAY = "craft-clay"; export declare const IMAGE_STYLE_CINEMATIC = "cinematic"; export declare const IMAGE_STYLE_3D_MODEL = "3d-model"; export declare const IMAGE_STYLE_PIXEL_ART = "pixel-art"; export declare const IMAGE_STYLE_TEXTURE = "texture"; export declare const IMAGE_STYLE_MONTY_PYTHON = "monty-python"; export declare const IMAGE_STYLE_AUTO = "auto"; export declare const IMAGE_STYLE_NONE = "none"; export type ImageStyle = typeof IMAGE_STYLE_ENHANCE | typeof IMAGE_STYLE_ANIME | typeof IMAGE_STYLE_PHOTOGRAPHIC | typeof IMAGE_STYLE_DIGITAL_ART | typeof IMAGE_STYLE_COMICBOOK | typeof IMAGE_STYLE_FANTASY_ART | typeof IMAGE_STYLE_ANALOG_FILM | typeof IMAGE_STYLE_NEONPUNK | typeof IMAGE_STYLE_ISOMETRIC | typeof IMAGE_STYLE_LOWPOLY | typeof IMAGE_STYLE_ORIGAMI | typeof IMAGE_STYLE_LINE_ART | typeof IMAGE_STYLE_CRAFT_CLAY | typeof IMAGE_STYLE_CINEMATIC | typeof IMAGE_STYLE_3D_MODEL | typeof IMAGE_STYLE_PIXEL_ART | typeof IMAGE_STYLE_TEXTURE | typeof IMAGE_STYLE_MONTY_PYTHON | typeof IMAGE_STYLE_AUTO | typeof IMAGE_STYLE_NONE; export type ImageStyleObject = { label: string; value: ImageStyle; };