It's strictly typed, and the Haxe compiler type inference does an incredible job of finding the correct type of your data.
Following the example here: http://haxe.org/ref/type_infer - try this neat trick:
var a = [["This is a nested array"], ["This is another nested array"], "This is not a nested array" ];
var b = $type(a);
It will give you a warning with the message
Warning : Array<Dynamic>
From that, we can see that the compiler correctly recognized your mix of two arrays and one string, and resolved that to an array of Dynamic, wich means that the array can basically hold any object thrown at it.
As a consequence, your variable definition
var a = [["This is..."], ["This is another..."], "This is not..." ];
is completely synonymous as the following one, including the explicit type definition:
var a:Array<Dynamic> = [["This is..."], ["This is another..."], "This is not..." ];