import { controllerResponse } from "../../types";
/**
 * Push notification async function
 * @param subscriber Object containing endpoint, keys, and message
 * @returns Controller response indicating success or failure and any relevant message
 */
export declare function pushNotification(subscriber: object): Promise<controllerResponse>;
