import type CoreGenerator from '../../base-core/index.ts';
import type prettierWorker from './prettier-worker.ts';
export declare const isPrettierConfigFilePath: (filePath: string) => boolean;
export declare const createPrettierTransform: (this: CoreGenerator, options?: Omit<Parameters<typeof prettierWorker>[0], "relativeFilePath" | "filePath" | "fileContents"> & {
    ignoreErrors?: boolean;
    extensions?: string;
}) => Promise<import("p-transform").DuplexWithDebug>;
