export interface FormatterOptions {
    doubleEscape?: boolean;
    fixEmptyObjects?: boolean;
    fixEmptyArrays?: boolean;
    addNewLineAtEndOfFile?: boolean;
    tabSize?: number;
}
/**
 * Format JSONs similarly to how Shopify does it.
 */
export declare const formatter: (source: string, options?: FormatterOptions) => string;
