import { IPushOptions, ISendMessageSuccessResponse } from '@novu/stateless'; import { ChannelTypeEnum, ICredentials } from '@novu/shared'; export interface IPushHandler { canHandle(providerId: string, channelType: ChannelTypeEnum): any; buildProvider(credentials: ICredentials): any; send(smsOptions: IPushOptions): Promise; } //# sourceMappingURL=push.handler.interface.d.ts.map