import NCMB, { NCMBQuery, NCMBObject } from '../index'; import { allowType } from '../types/Misc'; declare class NCMBPush extends NCMBObject { static ncmb: NCMB; constructor(); static query(): NCMBQuery; set(name: string, value: allowType): NCMBPush; save(): Promise; static open(deviceType: string, deviceToken: string, id: string): Promise; } export default NCMBPush;