export declare type canned_response_create_update_payload = {
    /**
     * Message content for canned response
     */
    content?: string;
    /**
     * Short Code for quick access of the canned response
     */
    short_code?: string;
};
