/**
 * checks if all required properties exist on token
 * @param object - tokenValue
 * @param array - property names
 * @returns void or throws error
 */
export declare const checkRequiredTokenProperties: (tokenValue: Record<string, unknown>, requiredProperties: readonly string[]) => void;
