import * as z from "zod/v3";
export type GetWorkspaceRequest = {
    /**
     * The ID of the account
     */
    accountId: string;
    /**
     * The ID of the workspace
     */
    workspaceId: string;
};
/** @internal */
export type GetWorkspaceRequest$Outbound = {
    accountId: string;
    workspaceId: string;
};
/** @internal */
export declare const GetWorkspaceRequest$outboundSchema: z.ZodType<GetWorkspaceRequest$Outbound, z.ZodTypeDef, GetWorkspaceRequest>;
export declare function getWorkspaceRequestToJSON(getWorkspaceRequest: GetWorkspaceRequest): string;
//# sourceMappingURL=getworkspace.d.ts.map