import { TransfersConfig } from "../models/FeatureFlagsModel"; export interface NotesResponse { sid: string; } export interface TransferSettingsResponse { transfer_settings: TransfersConfig[]; } export interface AISummaryNoteProps { interactionSid: string; channelSid: string; taskSid: string; participantSid: string; } declare class NotesService { submitNote(notes: string, { interactionSid, channelSid }: any): Promise; fetchAISummaryNote({ interactionSid, channelSid, taskSid, participantSid }: AISummaryNoteProps): Promise; } declare const _default: NotesService; export default _default;