import { AllAPIResponses, UserSubscriptionType } from './../../index'; declare type Params = { notificationSchemaId: number; userId: number; }; declare type Payload = { schedule: string; }; declare const put: (params: Params, payload: Payload, headers?: Headers | undefined) => Promise>; export default put;