import type { InkTheme } from "../render/ink-theme.js"; /** * Working-directory line rendered directly above the composer box, flush to * the composer's inner bounds: the home-shortened path in muted plus the git * branch grouped together on the left. The path shrinks with a middle * ellipsis first so the branch never falls off the edge; the builder's * budget is the same inset content column the status row uses. */ export declare function directoryRow(input: { readonly ink: InkTheme; readonly columns: number; readonly cwd: string; readonly branch: string | undefined; }): string;