import type { WebAPICallResult } from '../../WebClient';
export type AdminUsersGetExpirationResponse = WebAPICallResult & {
    error?: string;
    needed?: string;
    ok?: boolean;
    provided?: string;
    user?: User;
};
export interface User {
    email?: string;
    expiration_ts?: number;
    id?: string;
    is_restricted?: boolean;
    is_ultra_restricted?: boolean;
}
//# sourceMappingURL=AdminUsersGetExpirationResponse.d.ts.map