Feel free to declare only the ones you need. Heck, even remove the others from the Test1.h file, if you want to, so they won’t bloat your exe size any more than necessary. Order in the library doesn’t matter; just so long as they’re declared in your program.
Think of them like you would SUB/FUNCTION in QB45. QBASIC and QB45 used to DECLARE (sub/function name) at the top of your program — IF they were used in the program. You could write a dozen routines, but if they were never called, then you never had to declare them for use.
QB64 DECLARE LIBRARY works in a similar manner. You only need to declare the external routines you want to use. The rest, you can just overlook and forget about.