import type { GDocsDocument, GDocsBody } from './google-api-types.js'; import type { TabInfo } from './types.js'; /** Extract tab information from a Google Docs document */ export declare function extractTabs(doc: GDocsDocument): TabInfo[]; /** Get the default (first) tab ID */ export declare function getDefaultTabId(doc: GDocsDocument): string; /** Get the content body for a specific tab */ export declare function getTabBody(doc: GDocsDocument, tabId?: string): GDocsBody | null; //# sourceMappingURL=tabs.d.ts.map