export default function stringify(passedObj: any, options?: {
    indent?: string;
    maxLength?: number;
    replacer?: (this: any, key: string, value: any) => any;
}): string;
