export interface Image { format: string; size: number; url: string; https_url: string; } /** * 1 = 70x70px (w=70 h=70) * * 2 = 140x140px (q=50 w=140 h=140) * * 3 = 280x280px (w=280 h=280) * * 11 = 580x580px (w=580 h=580 s=1) * * 13 = 680x680px (w=680 h=680 s=1) * * 100 = 100x100px (w=100 h=100) * * 200 = 200x200px (w=200 h=200) * * 440 = 440x440px (w=440 h=440) * * 600 = 600x600px (w=600 h=600) */ export declare type ImageCroppedSize = 1 | 2 | 3 | 11 | 13 | 100 | 200 | 440 | 600; /** * 4 = 900px (m=900) * * 5 = 1170px (m=1170 k=1) * * 14 = 900px (m=900 s=1 k=1) * * 30 = 256px (m=256) * * 34 = 1000px (q=80 m=1000 k=1) * * 35 = 1500px (q=80 m=1500 k=1) * * 36 = 2000px (q=80 m=2000 k=1) * * 1080 = 1080px (m=1080 k=1) * * 1600 = 1600px (m=1600 k=1) * * 2048 = 2048px (m=2048 k=1) * * 4096 = 4096px (m=4096 k=1) */ export declare type ImageLongestEdgeSize = 4 | 5 | 14 | 30 | 34 | 35 | 36 | 1080 | 1600 | 2048 | 4096; /** * 6 = 1080px height (h=1080 k=1) * * 15 = 4096px width (w=4096 s=1) * * 20 = 300px height (h=300) * * 21 = 600px height (h=600 k=1) * * 22 = 450px height (q=50 h=450) * * 23 = 1000px width (q=50 w=1000) * * 24 = 2000px width (q=75 w=2000) * * 31 = 450px height (q=80 h=450) * * 32 = 300px height (q=80 h=300) * * 33 = 600px height (q=80 h=600 k=1) */ export declare type ImageStandardSize = 6 | 15 | 20 | 21 | 22 | 23 | 24 | 31 | 32 | 33; export declare type ImageSize = ImageCroppedSize | ImageLongestEdgeSize | ImageStandardSize;