/**
 * This is an asynchronous function that creates a new document in a database using the provided data
 * and model, and returns a success or failure message along with the new data.
 * @param data - The data parameter is an object that contains the information to be saved to the
 * database. It is used to create a new document in the database.
 * @param model - The "model" parameter is likely a Mongoose model that represents a specific
 * collection in a MongoDB database. It is used to create a new document in the collection based on the
 * "data" parameter passed to the function.
 * @returns an object with properties `status`, `message`, `NewCount`, and `NewData`. The values of
 * these properties depend on the outcome of the function. If the document creation is successful,
 * `status` is `true`, `message` is `"Successfully Created Data"`, `NewCount` is the length of the
 * array containing the newly created document (which is 1),
 */
export function Create(data: any, model: any): Promise<{
    status: boolean;
    message: string;
    NewCount: number;
    NewData: any[];
}>;
