import type { AnyContent } from "../types.js"; interface UseContentCommandsParams { content: AnyContent | null; textContent: string; } /** View display state controlled by content-level commands. */ export interface ContentCommandsResult { showLineNumbers: boolean; } /** * The commands a content viewer owns on top of `DocumentScreen`: copying the * whole document and toggling the line-number gutter. Theme, quit, actions and * every row-level command belong to the document controller and its screen. */ export declare const useContentCommands: ({ content, textContent, }: UseContentCommandsParams) => ContentCommandsResult; export {}; //# sourceMappingURL=use-content-commands.d.ts.map