export declare type JasonConfig = { tabs?: number; }; /** * @param text - The JSON to format. * @param config - The configuration. * * @returns The formatted JSON. */ export declare function jason(text: string, config?: JasonConfig): string;