import { z } from 'zod';
export declare const ProjectSchema: z.ZodObject<{
    id: z.ZodOptional<z.ZodString>;
    client_name: z.ZodString;
    project_name: z.ZodString;
    industry: z.ZodEnum<["financial_services", "healthcare", "retail", "manufacturing", "technology", "education", "government", "other"]>;
    description: z.ZodOptional<z.ZodString>;
    status: z.ZodDefault<z.ZodEnum<["draft", "active", "completed", "archived"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    updated_at: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    industry: "financial_services" | "healthcare" | "retail" | "manufacturing" | "technology" | "education" | "government" | "other";
    status: "draft" | "active" | "completed" | "archived";
    client_name: string;
    project_name: string;
    id?: string | undefined;
    created_at?: string | undefined;
    description?: string | undefined;
    updated_at?: string | undefined;
}, {
    industry: "financial_services" | "healthcare" | "retail" | "manufacturing" | "technology" | "education" | "government" | "other";
    client_name: string;
    project_name: string;
    id?: string | undefined;
    status?: "draft" | "active" | "completed" | "archived" | undefined;
    created_at?: string | undefined;
    description?: string | undefined;
    updated_at?: string | undefined;
}>;
export type Project = z.infer<typeof ProjectSchema>;
export declare const ProjectCreateSchema: z.ZodObject<Omit<{
    id: z.ZodOptional<z.ZodString>;
    client_name: z.ZodString;
    project_name: z.ZodString;
    industry: z.ZodEnum<["financial_services", "healthcare", "retail", "manufacturing", "technology", "education", "government", "other"]>;
    description: z.ZodOptional<z.ZodString>;
    status: z.ZodDefault<z.ZodEnum<["draft", "active", "completed", "archived"]>>;
    created_at: z.ZodOptional<z.ZodString>;
    updated_at: z.ZodOptional<z.ZodString>;
}, "id" | "created_at" | "updated_at">, "strip", z.ZodTypeAny, {
    industry: "financial_services" | "healthcare" | "retail" | "manufacturing" | "technology" | "education" | "government" | "other";
    status: "draft" | "active" | "completed" | "archived";
    client_name: string;
    project_name: string;
    description?: string | undefined;
}, {
    industry: "financial_services" | "healthcare" | "retail" | "manufacturing" | "technology" | "education" | "government" | "other";
    client_name: string;
    project_name: string;
    status?: "draft" | "active" | "completed" | "archived" | undefined;
    description?: string | undefined;
}>;
export type ProjectCreate = z.infer<typeof ProjectCreateSchema>;
//# sourceMappingURL=project.d.ts.map