export declare function getCondtions(cwd: string): { LessConditionsPreset: { stable: { test: (value: string) => boolean; }; legacy: { test: RegExp; exclude: string[]; }; widget: { test: RegExp; include: RegExp[]; }; }; ScopedLessConditionsPreset: { stable: { test: RegExp; }; legacy: { test: RegExp; include: string[]; }; widget: { test: RegExp; exclude: RegExp[]; }; }; };