/** * Statusline setup helper - Claude Code status line integration. * * Checks and configures Claude Code status line for context monitoring. * * @task T4454 * @epic T4454 */ /** Statusline integration status. */ export type StatuslineStatus = 'configured' | 'not_configured' | 'custom_no_cleo' | 'no_settings'; /** * Check if statusline integration is configured. * Returns the current integration status. */ export declare function checkStatuslineIntegration(): StatuslineStatus; /** * Get the statusline setup command for Claude Code settings. */ export declare function getStatuslineConfig(): Record; /** * Get human-readable setup instructions. */ export declare function getSetupInstructions(): string; //# sourceMappingURL=statusline-setup.d.ts.map