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<Tab>;
};
/** @internal */
export declare const TabInfo$inboundSchema: z.ZodType<TabInfo, z.ZodTypeDef, unknown>;
export declare function tabInfoFromJSON(jsonString: string): SafeParseResult<TabInfo, SDKValidationError>;
//# sourceMappingURL=tabinfo.d.ts.map