import { API } from 'zca-js';
import { CreateReminderInput, EditReminderInput, GetListReminderInput, GetReminderInput, RemoveReminderInput, GetReminderResponsesInput, ReminderOutput } from './types';
export declare function createReminder(api: API, input: CreateReminderInput): Promise<ReminderOutput>;
export declare function editReminder(api: API, input: EditReminderInput): Promise<ReminderOutput>;
export declare function getListReminder(api: API, input: GetListReminderInput): Promise<ReminderOutput>;
export declare function getReminder(api: API, input: GetReminderInput): Promise<ReminderOutput>;
export declare function removeReminder(api: API, input: RemoveReminderInput): Promise<ReminderOutput>;
export declare function getReminderResponses(api: API, input: GetReminderResponsesInput): Promise<ReminderOutput>;
