import { Config as Config$1 } from 'prettier';

type Config = Config$1 & Record<string, any>;
interface Options {
    /**
     * Format curly braces.
     *
     * @default true
     */
    curly?: boolean;
    /**
     * Format JSDoc and TSDoc comments. Use prettier-plugin-jsdoc.
     *
     * @default true
     */
    jsdoc?: boolean;
}

declare function prettier(options?: Options, userConfig?: Config): Config;

export { type Config as C, type Options as O, prettier as p };
