import { z } from "#compiled/zod/index.js"; //#region src/auth/file.d.ts declare const AuthFile: z.ZodObject<{ token: z.ZodOptional; refreshToken: z.ZodOptional; expiresAt: z.ZodOptional>>; }, z.core.$strip>; type AuthFile = z.infer; declare const getAuth: () => { token?: string | undefined; refreshToken?: string | undefined; expiresAt?: Date | undefined; } | null; declare function updateAuthConfig(config: AuthFile): void; //#endregion export { getAuth, updateAuthConfig }; //# sourceMappingURL=file.d.ts.map