/** * Returns a string representation of the value. * * @param value - The value to be parsed. Can be of any type. * @returns The parsed value as a string, or the value unchanged for null/undefined/number/string. */ export declare const parseValue: (value: any) => string | number | null | undefined;