/** * Create a valid Python string of a literal value according to its type. * * @param {*} value Any JavaScript literal * @param {Object} opts Target options * @return {string} */ export declare const literalRepresentation: (value: any, opts: Record, indentLevel?: number) => any;