Error when indexing from ReplicatedStorage with types enabled

I’m getting an error when using types and indexing “Maps”, a folder in ReplicatedStorage.

local ReplicatedStorage: ReplicatedStorage = game:GetService("ReplicatedStorage")
local Maps: { Model } = ReplicatedStorage.Maps:GetChildren()

Here’s the error
W000: Key ‘Maps’ not found in class “ReplicatedStorage”

Edit: print(Maps) works as expected during runtime, printing the table.

Is it an error in the output or is it just underlined in the editor? If the former, try using :WaitForChild, if the latter, it’s probably a bug (not 100% sure if it’s intended behaviour or not) so you can ignore it, but if it’s bothersome, try using :FindFirstChild or :WaitForChild to silence it. I get that a lot when indexing children of frames.