/** * Get the default array of file extensions considered javascript files. */ export declare const getDefaultJsExtensions: () => `.${string}`[]; /** * Get the default array of file extensions considered typescript files. */ export declare const getDefaultTsExtensions: () => `.${string}`[]; /** * Get glob patterns for files with the given extensions. */ export declare const getExtensionFileGlobs: (extensions?: string[]) => string[]; /** * Get glob patterns for test files with the given extensions. */ export declare const getExtensionDevFileGlobs: (extensions?: string[]) => string[];