import { z } from 'zod';
export declare const ClientIntegrationsSchema: z.ZodObject<{
    greenInvoiceId: z.ZodNullable<z.ZodOptional<z.ZodUUID>>;
    hiveId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
    linearId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
    slackChannelKey: z.ZodNullable<z.ZodOptional<z.ZodString>>;
    notionId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
    workflowyUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
}, z.core.$strict>;
export type ClientIntegrations = z.infer<typeof ClientIntegrationsSchema>;
export declare function validateClientIntegrations(input: unknown): ClientIntegrations;
