/** * Serialize a JavaScript value to a Vue template-friendly expression string. * * Converts JSON-style objects to readable JS object literals: * { primary: true, label: 'Button' } * * Used when writing args back to .stories.vue files. */ /** * Serialize args to a Vue template expression string. * Handles multiline formatting for objects with multiple keys. */ export declare function serializeArgs(value: unknown, indent?: number): string; //# sourceMappingURL=serialize-args.d.ts.map