import type { StylePort } from '@flyingrobots/bijou'; /** * Configuration options for {@link chalkStyle}. */ export interface ChalkStyleOptions { /** Disable all color output, returning unstyled text. */ noColor?: boolean; /** Explicit chalk color level override: 0=none, 1=ansi16, 2=ansi256, 3=truecolor. */ level?: 0 | 1 | 2 | 3; } /** * Create a chalk-backed {@link StylePort} with optional color suppression. * * @param noColor - Pass `true` to suppress all ANSI styling. * @returns A {@link StylePort} implemented via chalk. */ export declare function chalkStyle(arg?: boolean | ChalkStyleOptions): StylePort; //# sourceMappingURL=style.d.ts.map