import { TransformerProps, Transformer } from '../types.js';
interface Props extends TransformerProps {
include?: string[];
includePath?: string;
exclude?: string[];
excludePath?: string;
}
declare const transformer: Transformer<Props>;
export { type Props, transformer as default };