import { z } from "zod";
export declare const dbApiAccessDTO: z.ZodObject<{
    id: z.ZodNumber;
    token: z.ZodNullable<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    id: number;
    token: string | null;
}, {
    id: number;
    token: string | null;
}>;
export type DbApiAccessDtoT = z.infer<typeof dbApiAccessDTO>;
//# sourceMappingURL=apiAccess.entity.d.ts.map