type Arrayable<T> = T | T[];
export type StringifyOptions = {
    pretty?: string | number;
    excludKeys?: Arrayable<string | RegExp>;
};
export declare function stringify(value: any, options?: StringifyOptions): string;
export {};
