import { a as EntryBase } from './model-42c2c1fb.js';
import 'fs';

type FilterOpts = {
    include: string | string[];
    exclude?: string | string[];
};
declare const createFileEntry: ({ include, exclude }: FilterOpts) => (entry: EntryBase) => boolean;

export { createFileEntry };
