/**
 * @param profileData JSON of the profilin data, checked against a runtype
 * @param options configuring the resulting string
 * @returns stringified represenentation of the profile
 */
export declare const stringifyProfile: (profileData: unknown, options?: {
    maxWidth: number;
    color: boolean;
}) => string;
