import { ColorValue } from 'nanovis'; import { EventFrame } from '../types'; /** * Checks if the current frame is an application frame based on the given platform. * @param frame The event frame to check. * @param platform The platform of the SDK that generated the profile. * @returns `true` if the frame is an application frame, `false` otherwise. */ export declare const isApplicationFrame: (frame: EventFrame, platform?: string) => boolean; /** * Gets the color for a frame based on whether it's an application frame or a system frame. * It uses Sentry's color scheme. * @param frame The event frame to get the color for. * @param platform The platform of the SDK that generated the profile. * @returns The color value for the frame. * @see https://docs.sentry.io/product/explore/profiling/flame-charts-graphs/ */ export declare const getFrameColors: (frame: EventFrame, platform?: string) => ColorValue;