1 | export declare const VALID_LOADERS: readonly ["default", "imgix", "cloudinary", "akamai"];
|
2 | export declare type LoaderValue = typeof VALID_LOADERS[number];
|
3 | export declare type ImageConfig = {
|
4 | deviceSizes: number[];
|
5 | imageSizes: number[];
|
6 | loader: LoaderValue;
|
7 | path: string;
|
8 | domains?: string[];
|
9 | disableStaticImages: boolean;
|
10 | };
|
11 | export declare const imageConfigDefault: ImageConfig;
|