You need to export the interface from the file in which is defined and import it wherever you want to use it.
in IfcSampleInterface.ts:
export interface IfcSampleInterface {
key: string;
value: string;
}
In SampleInterface.ts
import { IfcSampleInterface } from './IfcSampleInterface';
let sampleVar: IfcSampleInterface;