export type NameMatcher = (value: string) => boolean;
export declare function createNameMatcher(list: (string | RegExp)[] | undefined, { exact }?: {
    exact?: boolean;
}): NameMatcher;
