import { type Colors } from '@poppinss/colors/types'; export declare const colors: Colors; /** * A collection of platform specific icons */ export declare const icons: { tick: string; cross: string; bullet: string; nodejs: string; pointer: string; info: string; warning: string; branch: string; squareSmallFilled: string; browserLog: string; }; /** * Returns a formatted string to print the information about * a pinned test using a transformed stack trace */ export declare function formatPinnedTest(title: string, transformedStack: string): string; /** * Prints a summary of all the pinned tests */ export declare function printPinnedTests(pinnedTests: string[]): void;