declare namespace protected {
}
declare namespace SampleProtected1 {
}
declare namespace SampleProtected2 {
}
declare class SampleProtected3 {
    private protected;
}
declare class SampleProtected4 {
    private var;
    protected: any;
}
declare class SampleProtected5 {
    protected(): void;
}
interface SampleProtected6 {
    protected: any;
}
declare function methodProtected(protected: any): void;
declare var protected: any;
