import { z } from 'zod';
/**
 * Schema for list-workspaces tool arguments
 */
export declare const ListWorkspacesToolArgs: z.ZodObject<{
    limit: z.ZodOptional<z.ZodNumber>;
    cursor: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    cursor?: string | undefined;
    limit?: number | undefined;
}, {
    cursor?: string | undefined;
    limit?: number | undefined;
}>;
export type ListWorkspacesToolArgsType = z.infer<typeof ListWorkspacesToolArgs>;
/**
 * Schema for get-workspace tool arguments
 */
export declare const GetWorkspaceToolArgs: z.ZodObject<{
    /**
     * Workspace slug to retrieve
     */
    workspaceSlug: z.ZodString;
}, "strip", z.ZodTypeAny, {
    workspaceSlug: string;
}, {
    workspaceSlug: string;
}>;
export type GetWorkspaceToolArgsType = z.infer<typeof GetWorkspaceToolArgs>;
