/**
 * Represents authentication details including a token and its expiration time.
 */
export interface Auth {
    token: string;
    expiration: number;
}
//# sourceMappingURL=Auth.d.ts.map