import type { PartialMessage } from 'esbuild';
/** Recursively get .less/.css imports from file */
export declare function getLessImports(filePath: string, paths?: string[], visited?: Set<string>): string[];
/** Convert less error into esbuild error */
export declare function convertLessError(error: Less.RenderError): PartialMessage;
