export declare type canned_response = { /** * ID of the canned response */ id?: number; /** * Message content for canned response */ content?: string; /** * Short Code for quick access of the canned response */ short_code?: string; /** * Account Id */ account_id?: number; };