export declare type AssetType = 'image' | 'svg' | 'lottie' | 'lottie-image' | 'file' | 'font' | 'media' | 'style'; export declare type Raw = RegExp | ((filePath: string) => boolean); export interface Asset { test?: RegExp; name?: string | Record | ((resourcePath: string, resourceQuery: Record, type: AssetType) => string); limit?: number; raw?: Raw; }