import { USR } from "../helper";
type CredentialsCookies = {
    USR: USR;
    IID: string;
    DEK: string;
    jwt_token: string;
    access_token: string;
};
export { CredentialsCookies };
