import type { Setup } from "../types/common";
declare const prettierJSON: ({ semicolons }: Setup) => {
    arrowParens: string;
    bracketSpacing: boolean;
    printWidth: number;
    proseWrap: string;
    semi: boolean;
    singleQuote: boolean;
    tabWidth: number;
    useTabs: boolean;
    trailingComma: string;
};
export default prettierJSON;
