Storing a script as a variable

Hey all,
Is there any way to store a script as a variable so that it can be enabled and disabled from another object without using GetComponent each time? As far as I can tell there’s no way to do this without dynamic typing.
Thanks in advance!

var theScriptToDisable : MonoBehaviour;

function Start () {
theScriptToDisable.enabled = false;
}

Perfect. Thank you so much!

also you can use any kind of script or component as a public variable and be able to assign it in the editor