export interface GetImageOptions { name?: string; fileName?: string; tags?: string[]; mirror?: boolean; } export interface ImageListingFilter { field: string; value: any; } export declare const ImageListingFilters: { field: string; value: string; }; export interface ImageListingOption { fields?: string[]; filters?: ImageListingFilter[]; } export declare const ImageListingOptionsModel: { fields: never[]; filters: never[]; }; export declare const FIELD_CONSTANTS: { NAME: string; FILE_NAME: string; TAGS: string; GROUP: string; MIRRORABLE: string; }; export declare const FILTER_CONSTANTS: { NAME: string; FILE_NAME: string; TAGS: string; GROUP: string; MIRRORABLE: string; }; export declare const GET_IMAGE_OPTIONS: { NAME: string; FILE_NAME: string; TAGS: string; }; export interface ImageListing { [key: string]: any; name?: string; fileName?: string; tags?: string[]; group?: string; mirrorable?: boolean; } export declare const ImageListingModel: { name: string; fileName: string; tags: never[]; group: string; mirrorable: boolean; }; //# sourceMappingURL=interfaces.d.ts.map