export declare type Pattern = string; export declare type Path = string; export declare type KeyedPatterns = { readonly [K in keyof T]: Pattern[]; }; export declare type KeyedPaths = { readonly [K in keyof T]: Path[]; }; export declare type _MatchResult = { readonly [K in keyof T]: boolean; }; export declare type MatchResult = _MatchResult & { /** Returns an object containing arrays of matched files instead of the usual boolean values. */ getKeyedPaths(): KeyedPaths; }; /** A vendored copy of the Chainsmoker module on NPM */ export declare type Chainsmoker = (...patterns: Pattern[]) => MatchResult; export default function chainsmoker(keyedPaths: KeyedPaths): Chainsmoker;