import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Tab } from "./tab.js"; export type TabInfo = { /** * Unique ID of the installed extension app */ appId: string; /** * Tab data representing the tabs associated with installed apps in the account */ tabs: Array; }; /** @internal */ export declare const TabInfo$inboundSchema: z.ZodType; export declare function tabInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tabinfo.d.ts.map