declare const _default: ({ relativeFilePath, filePath, fileContents, prettierOptions, prettierPackageJson, prettierJava, prettierProperties, }: {
    relativeFilePath: string;
    filePath: string;
    fileContents: string;
    prettierOptions?: Record<string, unknown>;
    prettierPackageJson?: boolean;
    prettierJava?: boolean;
    prettierProperties?: boolean;
}) => Promise<{
    result: string;
} | {
    errorMessage: string;
}>;
export default _default;
