export interface SendMessageData 
{
    to_user: number;
    type?:
    |"text"
    |"story_reply"
    |"post"
    |"image";
    message:string;
    url:string;
}