Interfaces: declaration and initialization in C#

interface IPrintable {
    void Print();
}

var printable = new IPrintable(); //<- Error