import type { NoneUser, NoneChannel } from './instance'; export declare type NoneAuthData = { user: string; channel: string; }; export declare type NoneAuthContext = { platform: 'none'; user: NoneUser; channel: NoneChannel; loginAt: Date; expireAt: Date; };